@fugood/node-llama-linux-x64-vulkan 1.0.0-beta.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 +19 -0
- package/index.node +0 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @fugood/node-llama-linux-x64-vulkan
|
|
2
|
+
|
|
3
|
+
Native module for llama.node targeting linux-x64-vulkan.
|
|
4
|
+
|
|
5
|
+
This package contains the pre-compiled native module for the specified platform and architecture with vulkan support.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
This package is typically installed automatically as a dependency of `@fugood/llama.node`.
|
|
10
|
+
|
|
11
|
+
## Platform Support
|
|
12
|
+
|
|
13
|
+
- **OS**: linux
|
|
14
|
+
- **Architecture**: x64
|
|
15
|
+
- **Variant**: vulkan
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
This package is not meant to be used directly. It is consumed by the main `@fugood/llama.node` package.
|
package/index.node
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fugood/node-llama-linux-x64-vulkan",
|
|
3
|
+
"version": "1.0.0-beta.0",
|
|
4
|
+
"description": "Native module for An another Node binding of llama.cpp (linux-x64-vulkan)",
|
|
5
|
+
"main": "index.node",
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/mybigday/llama.node.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"llama",
|
|
18
|
+
"llm",
|
|
19
|
+
"ai",
|
|
20
|
+
"genai",
|
|
21
|
+
"Local LLM",
|
|
22
|
+
"llama.cpp",
|
|
23
|
+
"linux",
|
|
24
|
+
"x64",
|
|
25
|
+
"native"
|
|
26
|
+
],
|
|
27
|
+
"author": "Hans <hans.chen@bricks.tools>",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/mybigday/llama.node/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/mybigday/llama.node#readme",
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"registry": "https://registry.npmjs.org",
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"index.node",
|
|
39
|
+
"*.so"
|
|
40
|
+
],
|
|
41
|
+
"variant": "vulkan"
|
|
42
|
+
}
|