-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 784 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 784 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
{
"name": "langchainsample",
"version": "1.0.0",
"description": "",
"scripts": {
"basic": "ts-node basic_execute.ts",
"retrieval": "ts-node retrieval_execute.ts",
"rag": "ts-node rag_execute.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/community": "^0.0.20",
"@langchain/google-genai": "^0.0.7",
"@langchain/openai": "^0.0.12",
"@swc/core": "^1.3.107",
"@swc/jest": "^0.2.34",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.7",
"chromadb": "^1.8.1",
"d3-dsv": "^2.0.0",
"dotenv": "^16.4.1",
"jest": "^29.7.0",
"langchain": "^0.1.7",
"openai": "^4.26.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}