-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 834 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
34
35
{
"name": "gas-field-local-rag",
"version": "2.0.0",
"description": "Offline RAG-powered customer services and technical support agent for gas field inspection and maintenance engineers using Foundry Local",
"type": "module",
"scripts": {
"ingest": "node src/ingest.js",
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "node --test test/*.test.js"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"express": "^4.21.0",
"foundry-local-sdk": "^0.9.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leestott/local-rag.git"
},
"keywords": [
"rag",
"offline-ai",
"foundry-local",
"phi-3",
"gas-field",
"support-agent",
"sqlite",
"tfidf"
],
"engines": {
"node": ">=20.0.0"
}
}