-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 756 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 756 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
{
"name": "RAG",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"start": "node server.js",
"server": "nodemon server.js"
},
"private": true,
"devDependencies": {
"nodemon": "^3.1.11"
},
"dependencies": {
"@langchain/community": "^1.1.1",
"@langchain/core": "^1.1.7",
"@langchain/openai": "^1.2.0",
"@langchain/pinecone": "^1.0.1",
"@langchain/textsplitters": "^1.0.1",
"@pinecone-database/pinecone": "^5.1.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"groq-sdk": "^0.37.0",
"multer": "^2.0.2",
"pdf-parse": "^1.1.1"
}
}