-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 972 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
{
"name": "ragzzy",
"version": "1.0.0",
"description": "RAG-powered customer support chatbot that learns from user contributions",
"main": "api/chat.js",
"scripts": {
"dev": "node -e \"console.log('Use: vercel dev')\"",
"build": "echo \"Static files - no build needed\"",
"deploy": "vercel --prod",
"test": "echo \"No tests specified yet\" && exit 0",
"lint": "echo \"No linting configured yet\"",
"start": "node -e \"console.log('Use: vercel dev')\"",
"eval": "node scripts/eval.js",
"eval:persona": "SUPPORT_PERSONA=1 node scripts/eval.js --persona",
"eval:k5": "FS_K=5 node scripts/eval.js --k 5",
"eval:out": "node scripts/eval.js --out eval.jsonl"
},
"keywords": ["chatbot", "rag", "ai", "customer-support", "gemini", "knowledge-base"],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"dotenv": "^17.2.1",
"minisearch": "^7.1.0"
}
}