-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.01 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.01 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
44
45
46
47
48
49
50
{
"name": "@joshuaramirez/vector-bot",
"version": "1.0.0",
"description": "Vector Bot: A fully local RAG pipeline using LlamaIndex with Ollama",
"bin": {
"vector-bot": "./bin/vector-bot.js"
},
"scripts": {
"postinstall": "node scripts/install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuaramirez/vector-bot.git"
},
"keywords": [
"vector-bot",
"rag",
"ollama",
"llama-index",
"ai",
"machine-learning",
"nlp",
"local",
"offline",
"embeddings",
"llm",
"retrieval-augmented-generation"
],
"author": "joshuaramirez",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshuaramirez/vector-bot/issues"
},
"homepage": "https://github.com/joshuaramirez/vector-bot#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"commander": "^11.0.0",
"ora": "^5.4.1",
"chalk": "^4.1.2",
"which": "^3.0.0"
},
"files": [
"bin/",
"scripts/",
"README.md",
"LICENSE"
]
}