-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 800 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 800 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
{
"name": "docuchat",
"version": "1.0.0",
"description": "- user can upload pdf files - llm can learn that pdf - user can now chat llm and ask anything about the pdf - use RAG - use js only - i have ollama locally what should model i use ? - lets plan this 1st dont code yet",
"main": "index.js",
"scripts": {
"start": "node backend/server.js",
"dev": "node backend/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/community": "^1.0.5",
"@langchain/core": "^1.1.0",
"@langchain/textsplitters": "^1.0.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"langchain": "^1.1.1",
"multer": "^2.0.2",
"ollama": "^0.6.3",
"pdf-parse": "^1.1.4"
}
}