-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
47
48
{
"name": "rag-agent",
"version": "0.1.0",
"description": "RAG Agent with behavior-based decomposition for adaptive retrieval strategies",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "tsx examples/rag_agent/index.ts",
"setup": "tsx examples/rag_agent/setup-data.ts",
"demo": "tsx examples/rag_agent/index.ts --demo",
"illustration": "tsx examples/rag_agent/illustration.ts",
"date-agent": "tsx examples/date_agent/main.ts",
"unit-converter": "tsx examples/unit_converter/main.ts",
"unit-converter-benchmark": "tsx examples/unit_converter/benchmark.ts",
"clean": "rm -rf dist"
},
"keywords": [
"rag",
"retrieval",
"agent",
"llm",
"opensymbolicai"
],
"author": "OpenSymbolicAI",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@opensymbolicai/core": "^0.1.0",
"axios": "^1.13.4",
"chromadb": "^1.9.2",
"chromadb-default-embed": "^2.13.2",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"openai": "^4.77.0",
"reflect-metadata": "^0.2.2",
"wikipedia": "^2.1.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
}
}