-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.56 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "genkitx-hnsw",
"keywords": [
"genkit-plugin",
"genkit-indexer",
"genkit-retriever",
"genkit-embedder",
"genkit-flow",
"genkit-rag",
"hnsw",
"vector",
"rag",
"ai",
"generative-ai",
"genai"
],
"version": "0.1.3",
"description": "Genkit AI framework plugin for HNSW vector database. get AI response enriched with additional context and knowledge with HNSW Vector Database using RAG Implementation",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"start": "node lib/index.js",
"compile": "tsc --declaration",
"build": "npm run test && npm run build:clean && npm run compile",
"build:clean": "rm -rf ./lib",
"build:watch": "tsc --watch"
},
"author": "surahutomo.aziz@gmail.com",
"license": "Apache-2.0",
"dependencies": {
"@genkit-ai/ai": "^0.5.0",
"@genkit-ai/core": "^0.5.0",
"@genkit-ai/flow": "^0.5.0",
"@genkit-ai/googleai": "^0.5.0",
"@langchain/google-genai": "^0.0.11",
"@types/node": "^20.12.12",
"fs": "^0.0.1-security",
"glob": "^8.1.0",
"hnswlib-node": "^1.3.0",
"langchain": "^0.0.11",
"node-absolute-path": "^1.0.6",
"node-fetch": "^3.2.6",
"redis": "^4.6.13",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/retzd-tech/genkitx-hnsw.git"
}
}