-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"name": "rag-from-scratch",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "",
"prepare": "husky"
},
"type": "module",
"exports": {
".": "./src/index.js",
"./embeddings": "./src/embeddings/index.js",
"./vector-stores": "./src/vector-stores/index.js",
"./loaders": "./src/loaders/index.js",
"./splitters": "./src/text-splitters/index.js",
"./retrievers": "./src/retrievers/index.js",
"./chains": "./src/chains/index.js"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"embedded-vector-db": "^0.0.4",
"node-fetch": "^3.3.2",
"node-llama-cpp": "^3.14.2",
"openai": "^6.7.0",
"ora": "^9.0.0",
"pdf-parse": "^2.4.5"
},
"devDependencies": {
"husky": "^9.1.7"
}
}