-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.88 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
{
"name": "aidevs2",
"module": "index.ts",
"type": "module",
"scripts": {
"10": "bun 10_switching/10.ts",
"11": "bun 11_docs/11.ts",
"12": "bun 12_web/12.ts",
"13": "bun 13_functions/13.ts",
"14": "bun 14_agent/14.ts",
"15": "bun 15_tasks/15.ts",
"16": "bun 16_nocode/16.ts",
"17": "bun 17_tree/17.ts",
"18": "bun 18_knowledge/18.ts",
"19": "bun 19_llama/19.ts",
"20": "bun 20_catch/20.ts",
"21": "bun 21_similarity/21.ts",
"22": "bun 22_simple/22.ts",
"23": "bun 23_fragmented/23.ts",
"24": "bun 24_files/24.ts",
"25": "bun 25_correct/25.ts",
"26": "bun 26_summarize/26.ts",
"27": "bun 27_qdrant/27.ts",
"28": "bun 28_intent/28.ts",
"29": "bun 29_notify/29.ts",
"30": "bun 30_youtube/30.ts",
"31": "bun --watch 31_alice/app.ts",
"01": "bun 01_langchain_init/01.ts",
"02": "bun 02_langchain_format/02.ts",
"03": "bun 03_langchain_stream/03.ts",
"04": "bun 04_tiktoken/04.ts",
"05": "bun 05_conversation/05.ts",
"06": "bun 06_external/06.ts",
"07": "bun 07_output/07.ts",
"08": "bun 08_cot/08.ts",
"09": "bun 09_context/09.ts",
"chat": "bun chat/chat.ts"
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@langchain/openai": "0.0.22",
"@qdrant/js-client-rest": "^1.5.0",
"@types/cors": "2.8.17",
"@types/express": "^4.17.21",
"cheerio": "^1.0.0-rc.12",
"cors": "2.8.5",
"express": "^4.18.2",
"faiss-node": "^0.5.1",
"hnswlib-node": "^2.0.0",
"knex": "^3.0.1",
"langchain": "0.1.28",
"node-html-markdown": "^1.3.0",
"objection": "^3.1.2",
"openai": "^4.11.0",
"qdrant": "^1.3.1",
"sqlite3": "^5.1.6",
"tiktoken": "^1.0.10",
"uuid": "^9.0.1",
"xml-js": "^1.6.11",
"youtube-transcript": "^1.0.6",
"youtubei.js": "6.4.1"
}
}