-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "genkitx-redis",
"keywords": [
"genkit-plugin",
"genkit-indexer",
"genkit-retriever",
"genkit-embedder",
"genkit-flow",
"genkit-rag",
"redis",
"vector",
"rag",
"ai",
"generative-ai",
"genai"
],
"version": "0.0.1-rc.1",
"description": "Genkit AI framework plugin for Redis vector database. get AI response enriched with additional context and knowledge with Redis using RAG Implementation",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node lib/index.js",
"compile": "tsc --declaration",
"build": "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-rc.2",
"@genkit-ai/core": "^0.5.0-rc.2",
"@genkit-ai/flow": "^0.5.0-rc.2",
"@genkit-ai/googleai": "^0.5.0-rc.2",
"@langchain/google-genai": "^0.0.11",
"fs": "^0.0.1-security",
"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",
"glob": "^8.1.0",
"typescript": "^5.4.5"
},
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/retzd-tech/genkitx-redis.git"
}
}