@auxot/worker-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +156 -0
- package/dist/capabilities.js +125 -0
- package/dist/debug.js +54 -0
- package/dist/gpu-detection.js +171 -0
- package/dist/gpu-id.js +48 -0
- package/dist/index.js +341 -0
- package/dist/llama-binary.js +287 -0
- package/dist/llama-process.js +203 -0
- package/dist/llama.js +207 -0
- package/dist/model-downloader.js +145 -0
- package/dist/model-resolver.js +80 -0
- package/dist/policy-validator.js +242 -0
- package/dist/types.js +4 -0
- package/dist/websocket.js +433 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@auxot/worker-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Auxot GPU worker CLI - connects local GPU resources to Auxot platform",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"author": "Auxot <support@auxot.com>",
|
|
8
|
+
"homepage": "https://auxot.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/keith301/auxot.git",
|
|
12
|
+
"directory": "apps/worker-cli"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/keith301/auxot/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"auxot",
|
|
19
|
+
"gpu",
|
|
20
|
+
"worker",
|
|
21
|
+
"llama",
|
|
22
|
+
"llm",
|
|
23
|
+
"ai"
|
|
24
|
+
],
|
|
25
|
+
"bin": {
|
|
26
|
+
"auxot-worker": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/**/*",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "tsx src/index.ts",
|
|
35
|
+
"dev:debug": "tsx src/index.ts --debug 1",
|
|
36
|
+
"dev:debug2": "tsx src/index.ts --debug 2",
|
|
37
|
+
"build": "tsc",
|
|
38
|
+
"start": "node dist/index.js",
|
|
39
|
+
"prepublishOnly": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@auxot/model-registry": "*",
|
|
43
|
+
"@auxot/shared": "*",
|
|
44
|
+
"eventsource-parser": "^1.1.2",
|
|
45
|
+
"ws": "^8.16.0",
|
|
46
|
+
"uuid": "^9.0.1"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/node": "^20.10.6",
|
|
50
|
+
"@types/ws": "^8.5.10",
|
|
51
|
+
"tsx": "^4.7.0",
|
|
52
|
+
"typescript": "^5.3.3"
|
|
53
|
+
},
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=18.0.0"
|
|
56
|
+
}
|
|
57
|
+
}
|