-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sydney-ai",
"version": "1.0.1",
"type": "module",
"description": "a NodeJS Client for the new Bing AI ChatBot (Sydney GPT4)",
"main": "dist/index.js",
"scripts": {
"start": "tsc;node examples/cli.js",
"build": "tsc",
"test": "node examples/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PawanOsman/sydney-ai.git"
},
"author": "PawanOsman <[email protected]> (https://pawan.krd/)",
"keywords": [
"chatgpt",
"gpt4",
"gpt3.5",
"gpt3",
"gpt",
"Language",
"model",
"Natural",
"language",
"processing",
"(NLP)",
"Dialogue",
"generation",
"Conversation",
"Chatbot",
"Generative",
"Pre-trained",
"Transformer",
"(GPT)",
"Artificial",
"intelligence",
"(AI)",
"Machine",
"learning",
"(ML)",
"Pre-training",
"Transfer",
"learning",
"Text",
"generation",
"Text",
"prediction",
"OpenAI",
"Microsoft",
"Bing",
"Chatbot",
"AI",
"Sydney",
"Artificial Intelligence",
"Virtual Assistant",
"Natural Language Processing",
"Conversation",
"Interaction",
"Machine Learning",
"NLP"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PawanOsman/sydney-ai/issues"
},
"homepage": "https://github.com/PawanOsman/sydney-ai#readme",
"dependencies": {
"@microsoft/signalr": "7.0.2",
"axios": "1.3.2",
"crypto": "1.0.1",
"dotenv": "16.0.3"
},
"devDependencies": {
"@types/node": "18.13.0"
}
}