-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "gpt-llama.cpp",
"version": "0.2.6",
"description": "A llama.cpp drop-in replacement for OpenAI's GPT endpoints, allowing GPT-powered apps to run off local llama.cpp models instead of OpenAi.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"precommit": "prettier --write .",
"update-embeddings": "cd InferenceEngine/embeddings/all-mpnet-base-v2 && python -m pip install -r requirements.txt"
},
"author": "kelden",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keldenl/gpt-llama.cpp"
},
"dependencies": {
"child_process": "^1.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"ip": "^1.1.8",
"nanoid": "^4.0.2",
"path": "^0.12.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prettier": "2.8.7"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"gpt-llama.cpp": "./bin/cli.cjs"
}
}