-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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
52
53
54
55
56
57
58
{
"name": "openai-gpt-token-counter",
"version": "1.1.2",
"description": "Count the number of OpenAI tokens in a string. Supports all OpenAI Text models including GPT-5, GPT-4, GPT-3.5-turbo, and specialized models",
"main": "src/index.js",
"types": "src/index.d.ts",
"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-5",
"gpt-5-mini",
"gpt-5-nano",
"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-5",
"openai gpt-5-mini",
"openai gpt-5-nano",
"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.22"
},
"repository": {
"type": "git",
"url": "https://github.com/codergautam/openai-gpt-token-counter.git"
}
}