-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "openai-gpt-token-counter",
"version": "1.1.1",
"description": "Count the number of OpenAI tokens in a string. Supports all OpenAI Text models (text-davinci-003, gpt-3.5-turbo, gpt-4)",
"main": "src/index.js",
"scripts": {
"test": "node test"
},
"keywords": [
"openai",
"gpt",
"gpt3",
"openai tokens",
"tokens",
"gpt3 tokens",
"gpt3 token counter",
"openai token counter",
"token gpt3",
"gpt4",
"gpt4 tokens",
"gpt4 token counter",
"openai gpt4",
"gpt-3.5-turbo",
"gpt-4",
"gpt-4-32k",
"gpt-3.5-turbo tokens",
"gpt-3.5-turbo token counter",
"openai gpt-3.5-turbo",
"openai gpt-4",
"openai gpt-4-32k",
"openai gpt models",
"natural language processing",
"NLP",
"text generation",
"chatbot development",
"AI development",
"machine learning",
"language model",
"gpt token count",
"gpt tokens"
],
"author": "CoderGautamYT",
"license": "ISC",
"dependencies": {
"tiktoken": "^1.0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/codergautam/openai-gpt-token-counter.git"
}
}