-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 803 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 803 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
36
37
38
39
40
41
{
"name": "@forge-ml/rag",
"version": "0.0.16",
"description": "A RAG (Retrieval-Augmented Generation) package for Forge ML",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest",
"build": "tsc",
"ship": "sh publish.sh"
},
"keywords": [
"rag",
"ml",
"forge",
"retrieval",
"generation"
],
"author": "",
"license": "ISC",
"dependencies": {
"@nomic-ai/atlas": "^0.10.1",
"@turbopuffer/turbopuffer": "^0.5.10",
"@types/pg": "^8.11.8",
"minio": "^8.0.1",
"openai": "^4.56.1",
"pg": "^8.12.0",
"redis": "^4.7.0"
},
"devDependencies": {
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}