UNPKG

n8n-nodes-gpt-tokenizer

Version:

n8n node for working with BPE Tokens with OpenAI's GPT models in mind.

59 lines (58 loc) 1.35 kB
{ "name": "n8n-nodes-gpt-tokenizer", "version": "0.1.1", "description": "n8n node for working with BPE Tokens with OpenAI's GPT models in mind.", "keywords": [ "n8n-community-node-package", "n8n", "nodemation", "n8n-node", "gpt", "bpe", "tokenizer" ], "license": "MIT", "homepage": "", "author": { "name": "geckse", "email": "mail@geckse.de", "homepage": "https://geckse.de" }, "repository": { "type": "git", "url": "https://github.com/geckse/n8n-nodes-gpt-tokenizer.git" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes --write", "lint": "eslint nodes package.json", "lintfix": "eslint nodes package.json --fix" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "dist/nodes/GptTokenizer/GptTokenizer.node.js" ] }, "devDependencies": { "@types/express": "^4.17.6", "@types/request-promise-native": "~1.0.15", "@typescript-eslint/parser": "~5.45", "eslint": "^8.40.0", "eslint-plugin-n8n-nodes-base": "^1.11.0", "gulp": "^4.0.2", "n8n-core": "*", "n8n-workflow": "*", "prettier": "^2.7.1", "typescript": "~4.8.4" }, "dependencies": { "gpt-tokenizer": "^1.0.4" } }