@realtimex/node-llama-cpp-linux-x64-cuda-ext-chunk-06 0.0.0-bootstrap.0 → 0.3.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/LICENSE +1 -1
- package/README.md +2 -1
- package/chunks/linux-x64-cuda.part-06.bin +0 -0
- package/package.json +22 -17
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
# @realtimex/node-llama-cpp-linux-x64-cuda-ext-chunk-06
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Internal chunk package used to assemble the large CUDA fallback backend for `@realtimex/node-llama-cpp`.
|
|
4
|
+
It is not meant to be installed directly.
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,33 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@realtimex/node-llama-cpp-linux-x64-cuda-ext-chunk-06",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Chunk package for the Linux x64 CUDA fallback backend used by node-llama-cpp (6/6)",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"files": [
|
|
7
|
+
"chunks/",
|
|
8
|
+
"package.json",
|
|
6
9
|
"README.md",
|
|
7
|
-
"LICENSE"
|
|
8
|
-
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=20.0.0"
|
|
14
|
+
},
|
|
15
|
+
"os": [
|
|
16
|
+
"linux"
|
|
17
|
+
],
|
|
18
|
+
"cpu": [
|
|
19
|
+
"x64"
|
|
20
|
+
],
|
|
21
|
+
"libc": [
|
|
22
|
+
"glibc"
|
|
9
23
|
],
|
|
10
24
|
"repository": {
|
|
11
25
|
"type": "git",
|
|
12
26
|
"url": "git+https://github.com/therealtimex/node-llama-cpp.git"
|
|
13
27
|
},
|
|
28
|
+
"author": "Gilad S.",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"preferUnplugged": true,
|
|
14
31
|
"bugs": {
|
|
15
32
|
"url": "https://github.com/therealtimex/node-llama-cpp/issues"
|
|
16
33
|
},
|
|
17
34
|
"homepage": "https://node-llama-cpp.withcat.ai",
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"author": "Gilad S.",
|
|
20
35
|
"publishConfig": {
|
|
21
36
|
"access": "public"
|
|
22
|
-
}
|
|
23
|
-
"preferUnplugged": true,
|
|
24
|
-
"os": [
|
|
25
|
-
"linux"
|
|
26
|
-
],
|
|
27
|
-
"cpu": [
|
|
28
|
-
"x64"
|
|
29
|
-
],
|
|
30
|
-
"libc": [
|
|
31
|
-
"glibc"
|
|
32
|
-
]
|
|
37
|
+
}
|
|
33
38
|
}
|