-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
{
"name": "advanced-rag-demo",
"version": "1.0.0",
"description": "Cutting-edge RAG demonstration with hybrid search, reranking, and streaming",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"ingest": "tsx src/ingestion/ingest.ts",
"ingest:files": "tsx src/ingestion/ingest-files.ts",
"ingest:sample": "tsx src/ingestion/ingest.ts",
"qdrant:setup": "./scripts/setup-qdrant.sh",
"qdrant:check": "node scripts/check-qdrant.js",
"qdrant:init": "tsx src/lib/qdrant-init.ts",
"qdrant:reset": "tsx src/lib/qdrant-init.ts --reset",
"docker:up": "docker-compose up -d qdrant",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f qdrant",
"test": "vitest"
},
"dependencies": {
"@langchain/community": "^0.3.18",
"@langchain/core": "^0.3.28",
"@langchain/openai": "^0.3.16",
"@qdrant/js-client-rest": "^1.12.0",
"cohere-ai": "^7.15.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"langchain": "^0.3.8",
"openai": "^4.77.3",
"pdf-parse": "^1.1.1",
"tiktoken": "^1.0.18",
"uuid": "^11.0.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.6",
"@types/uuid": "^10.0.0",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}