-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "web-augmented-generation",
"description": "Web Augmented Generation using SearXNG and any OpenAI API compatable LLM (Ollama, etc.)",
"version": "1.2.1",
"type": "module",
"main": "main.js",
"scripts": {
"start": "node main.js"
},
"keywords": [
"ollama",
"web",
"augmented",
"generation",
"search"
],
"homepage": "https://www.equilllabs.com/projects/web-augmented-generation",
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/web-augmented-generation.git"
},
"bugs": {
"url": "https://github.com/jparkerweb/web-augmented-generation/issues",
"email": "[email protected]"
},
"fundingUrl": "https://ko-fi.com/jparkerweb",
"author": "Justin Parker",
"license": "ISC",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"chunk-match": "^1.1.4",
"dotenv": "^16.0.3",
"jsdom": "^25.0.1",
"llama3-tokenizer-js": "^1.2.0",
"node-fetch": "^3.3.1",
"ollama": "^0.5.10",
"openai": "^4.73.0",
"ora": "^8.1.1",
"string-segmenter": "^1.1.0"
},
"engines": {
"node": ">=16.0.0"
}
}