node-llama-cpp 2.3.0 → 2.3.1
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 +21 -4
- package/llamaBins/mac-arm64-16.node +0 -0
- package/llamaBins/mac-arm64-17.node +0 -0
- package/llamaBins/mac-arm64-18.node +0 -0
- package/llamaBins/mac-arm64-19.node +0 -0
- package/llamaBins/mac-arm64-20.node +0 -0
- package/llamaBins/mac-x64-16.node +0 -0
- package/llamaBins/mac-x64-17.node +0 -0
- package/llamaBins/mac-x64-18.node +0 -0
- package/llamaBins/mac-x64-19.node +0 -0
- package/llamaBins/mac-x64-20.node +0 -0
- package/llamaBins/win-x64-16.node +0 -0
- package/llamaBins/win-x64-17.node +0 -0
- package/llamaBins/win-x64-18.node +0 -0
- package/llamaBins/win-x64-19.node +0 -0
- package/llamaBins/win-x64-20.node +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
+
<img alt="node-llama-cpp Logo" src="assets/logo.roundEdges.png" width="360px" />
|
|
3
|
+
<h1>Node Llama.cpp</h1>
|
|
4
|
+
<p>Node.js bindings for llama.cpp</p>
|
|
5
|
+
<sub>Pre-built bindings are provided with a fallback to building from source with node-gyp</sub>
|
|
6
|
+
<p></p>
|
|
7
|
+
</div>
|
|
2
8
|
|
|
3
|
-
|
|
4
|
-
Node.js bindings for llama.cpp.
|
|
5
|
-
|
|
6
|
-
<sub>Pre-built bindings are provided with a fallback to building from source with `node-gyp`.<sub>
|
|
9
|
+
<div align="center">
|
|
7
10
|
|
|
8
11
|
[](https://github.com/withcatai/node-llama-cpp/actions/workflows/build.yml)
|
|
9
12
|
[](https://www.npmjs.com/package/node-llama-cpp)
|
|
@@ -312,3 +315,17 @@ Options:
|
|
|
312
315
|
-h, --help Show help [boolean]
|
|
313
316
|
-v, --version Show version number [boolean]
|
|
314
317
|
```
|
|
318
|
+
|
|
319
|
+
## Acknowledgements
|
|
320
|
+
* llama.cpp: [ggerganov/llama.cpp](https://github.com/ggerganov/llama.cpp)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
<br />
|
|
324
|
+
|
|
325
|
+
<div align="center" width="360">
|
|
326
|
+
<img alt="Star please" src="assets/star.please.roundEdges.png" width="360px" margin="auto" />
|
|
327
|
+
<br/>
|
|
328
|
+
<p align="right">
|
|
329
|
+
<i>If you like this repo, star it ✨</i>
|
|
330
|
+
</p>
|
|
331
|
+
</div>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-llama-cpp",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "node.js bindings for llama.cpp",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"prebuild": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
45
45
|
"build": "tsc --build tsconfig.json --force",
|
|
46
46
|
"addPostinstallScript": "npm pkg set scripts.postinstall=\"node ./dist/cli/cli.js postinstall\"",
|
|
47
|
-
"generate-docs": "typedoc",
|
|
47
|
+
"generate-docs": "typedoc && cp -r ./assets/*.png ./docs/assets/",
|
|
48
48
|
"prewatch": "rm -rf ./dist ./tsconfig.tsbuildinfo",
|
|
49
49
|
"watch": "tsc --build tsconfig.json --watch --force",
|
|
50
50
|
"node-gyp-llama": "cd llama && node-gyp",
|