-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.6 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
{
"name": "aijstack",
"version": "0.0.1",
"description": "AIJStack - A modular AI stack for building applications with LLMs and RAG",
"author": "John Van Derton",
"requiredNodeVersion": ">=18.0.0",
"requiredPythonVersion": "3.9.0",
"scripts": {
"quick-start": "npm run start-dev:all",
"installation": "npm run _js-env_install && npm run _py-env_install",
"start-dev:all": "npm run clean && concurrently \"npm run start-llm:dev\" \"npm run start-rag:dev\"",
"start-rag:dev": "nest start",
"start-rag:debug": "nest start --watch",
"start-llm:dev": ".venv/bin/python src/llm/start-server.py",
"start-llm:debug": ".venv/bin/python src/llm/start-server.py --debug",
"clean": "rm -rf dist",
"_js-env_install": "npm install",
"_py-env_install": "npm run _create-venv && npm run _get_dependencies && npm run _numpy-fix",
"_numpy-fix": ".venv/bin/pip3.9 install 'numpy<2'",
"_create-venv": "python3 -m venv .venv && .venv/bin/pip install --upgrade pip setuptools wheel",
"_get_dependencies": ".venv/bin/pip3.9 install -r requirements.txt"
},
"dependencies": {
"@langchain/core": "^0.3.58",
"@nestjs/common": "^11.1.7",
"@nestjs/core": "^11.1.7",
"@nestjs/platform-express": "^11.1.7",
"@xenova/transformers": "^2.17.2",
"axios": "^1.6.7",
"dotenv": "^17.0.1",
"fs-extra": "^11.2.0",
"langchain": "^0.3.36",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.7",
"@types/node": "^25.6.0",
"concurrently": "^9.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
}
}