Skip to content

Commit 493dbe7

Browse files
committed
fix: Update README to direct to official repo
1 parent 1fb4489 commit 493dbe7

File tree

5 files changed

+190
-70
lines changed

5 files changed

+190
-70
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<div align="center">
2+
<h1>@aibrow/node-llama-cpp</h1>
3+
<p>This is a fork of node-llama-cpp intended for use with [AiBrow](https://aibrow.ai).</p>
4+
<p>Please use the official [withcatai/node-llama-cpp](https://github.com/withcatai/node-llama-cpp) github repo and [node-llama-cpp](https://www.npmjs.com/package/node-llama-cpp) npm package for your own projects.</p>
5+
<p></p>
6+
</div>
17
<div align="center">
28
<a href="https://node-llama-cpp.withcat.ai" target="_blank"><img alt="node-llama-cpp Logo" src="https://raw.githubusercontent.com/withcatai/node-llama-cpp/master/assets/logo.v3.roundEdges.avif" width="360px" /></a>
39
<h1>node-llama-cpp</h1>

package-lock.json

Lines changed: 169 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"license": "MIT",
126126
"preferUnplugged": true,
127127
"bugs": {
128-
"url": "https://github.com/withcatai/node-llama-cpp/issues"
128+
"url": "https://github.com/axonzeta/node-llama-cpp/issues"
129129
},
130130
"funding": {
131131
"type": "github",
@@ -222,16 +222,16 @@
222222
}
223223
},
224224
"optionalDependencies": {
225-
"@aibrow/node-llama-cpp-linux-arm64": "0.1.0",
226-
"@aibrow/node-llama-cpp-linux-armv7l": "0.1.0",
227-
"@aibrow/node-llama-cpp-linux-x64": "0.1.0",
228-
"@aibrow/node-llama-cpp-linux-x64-cuda": "0.1.0",
229-
"@aibrow/node-llama-cpp-linux-x64-vulkan": "0.1.0",
230-
"@aibrow/node-llama-cpp-mac-arm64-metal": "0.1.0",
231-
"@aibrow/node-llama-cpp-mac-x64": "0.1.0",
232-
"@aibrow/node-llama-cpp-win-arm64": "0.1.0",
233-
"@aibrow/node-llama-cpp-win-x64": "0.1.0",
234-
"@aibrow/node-llama-cpp-win-x64-cuda": "0.1.0",
235-
"@aibrow/node-llama-cpp-win-x64-vulkan": "0.1.0"
225+
"@aibrow/node-llama-cpp-linux-arm64": "1.1.2",
226+
"@aibrow/node-llama-cpp-linux-armv7l": "1.1.2",
227+
"@aibrow/node-llama-cpp-linux-x64": "1.1.2",
228+
"@aibrow/node-llama-cpp-linux-x64-cuda": "1.1.2",
229+
"@aibrow/node-llama-cpp-linux-x64-vulkan": "1.1.2",
230+
"@aibrow/node-llama-cpp-mac-arm64-metal": "1.1.2",
231+
"@aibrow/node-llama-cpp-mac-x64": "1.1.2",
232+
"@aibrow/node-llama-cpp-win-arm64": "1.1.2",
233+
"@aibrow/node-llama-cpp-win-x64": "1.1.2",
234+
"@aibrow/node-llama-cpp-win-x64-cuda": "1.1.2",
235+
"@aibrow/node-llama-cpp-win-x64-vulkan": "1.1.2"
236236
}
237237
}

scripts/resolveLatestReleaseVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const argv = await yargs(hideBin(process.argv))
1111

1212
const {saveVersionToFile} = argv;
1313

14-
const releaseRes = await fetch("https://api.github.com/repos/withcatai/node-llama-cpp/releases/latest");
14+
const releaseRes = await fetch("https://api.github.com/repos/axonzeta/node-llama-cpp/releases/latest");
1515
const release: Release = await releaseRes.json();
1616

1717
let latestReleaseVersion = release.tag_name;

test/utils/setupAndTestOnPaperspace.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# Run this script with this command:
88
# bash -c "$(curl -fsSL https://raw.githubusercontent.com/withcatai/node-llama-cpp/master/test/utils/setupAndTestOnPaperspace.sh)"
99

10-
installationCommand='bash -c "$(curl -fsSL https://raw.githubusercontent.com/withcatai/node-llama-cpp/master/test/utils/setupAndTestOnPaperspace.sh)"'
10+
installationCommand='bash -c "$(curl -fsSL https://raw.githubusercontent.com/axonzeta/node-llama-cpp/master/test/utils/setupAndTestOnPaperspace.sh)"'
1111

12-
defaultRepo="withcatai/node-llama-cpp"
12+
defaultRepo="axonzeta/node-llama-cpp"
1313
targetFolder="$HOME/workspace/test-node-llama-cpp"
1414
nodejsVersion="21"
1515

0 commit comments

Comments
 (0)