Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
release: v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hlhr202 committed May 14, 2023
1 parent a9d832b commit f9d8b3b
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 32 deletions.
10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/examples",
"version": "0.1.3",
"version": "0.1.4",
"description": "",
"main": "index.js",
"type": "module",
Expand All @@ -19,9 +19,9 @@
"langchain": "^0.0.56"
},
"dependencies": {
"@llama-node/core": "0.1.3",
"@llama-node/llama-cpp": "0.1.3",
"@llama-node/rwkv-cpp": "0.1.3",
"llama-node": "0.1.3"
"@llama-node/core": "0.1.4",
"@llama-node/llama-cpp": "0.1.4",
"@llama-node/rwkv-cpp": "0.1.4",
"llama-node": "0.1.4"
}
}
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "llama-node",
"version": "0.1.3",
"version": "0.1.4",
"description": "Node.js Library for Large Language Model LLaMA/RWKV",
"keywords": [
"llama",
Expand Down Expand Up @@ -58,10 +58,10 @@
"packageManager": "[email protected]",
"homepage": "https://llama-node.vercel.app/",
"devDependencies": {
"@llama-node/cli": "0.1.3",
"@llama-node/core": "0.1.3",
"@llama-node/llama-cpp": "0.1.3",
"@llama-node/rwkv-cpp": "0.1.3",
"@llama-node/cli": "0.1.4",
"@llama-node/core": "0.1.4",
"@llama-node/llama-cpp": "0.1.4",
"@llama-node/rwkv-cpp": "0.1.4",
"@napi-rs/cli": "^2.15.2",
"@tensorflow/tfjs-node": "^4.2.0",
"@types/node": "^18.15.5",
Expand All @@ -80,17 +80,17 @@
"vitest": "^0.30.1"
},
"dependencies": {
"@llama-node/cli": "0.1.3"
"@llama-node/cli": "0.1.4"
},
"optionalDependencies": {
"@llama-node/core": "0.1.3",
"@llama-node/llama-cpp": "0.1.3",
"@llama-node/rwkv-cpp": "0.1.3"
"@llama-node/core": "0.1.4",
"@llama-node/llama-cpp": "0.1.4",
"@llama-node/rwkv-cpp": "0.1.4"
},
"peerDependencies": {
"@llama-node/cli": "0.1.3",
"@llama-node/core": "0.1.3",
"@llama-node/llama-cpp": "0.1.3",
"@llama-node/rwkv-cpp": "0.1.3"
"@llama-node/cli": "0.1.4",
"@llama-node/core": "0.1.4",
"@llama-node/llama-cpp": "0.1.4",
"@llama-node/rwkv-cpp": "0.1.4"
}
}
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/cli",
"version": "0.1.3",
"version": "0.1.4",
"description": "",
"main": "index.js",
"type": "commonjs",
Expand All @@ -12,7 +12,7 @@
"test": "tsx src/index.ts"
},
"dependencies": {
"@llama-node/core": "0.1.3",
"@llama-node/core": "0.1.4",
"yargs": "^17.7.1"
},
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/core",
"version": "0.1.3",
"version": "0.1.4",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down
2 changes: 1 addition & 1 deletion packages/llama-cpp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/llama-cpp",
"version": "0.1.3",
"version": "0.1.4",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down
2 changes: 1 addition & 1 deletion packages/rwkv-cpp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llama-node/rwkv-cpp",
"version": "0.1.3",
"version": "0.1.4",
"main": "index.js",
"types": "index.d.ts",
"napi": {
Expand Down
18 changes: 9 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions scripts/artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const branch = process.argv[2] ?? "main";
interface WorkflowRun {
id: string;
status: "queued" | "in_progress" | "completed";
display_title?: string;
conclusion:
| "success"
| "failure"
Expand Down Expand Up @@ -38,6 +39,9 @@ async function getLatestGithubAction() {

console.log(`Branch: ${branch}`);
console.log(`Last successful workflow run id: ${lastId}`);
console.log(
`Last successful workflow description: ${firstThatSuccess?.display_title}`
);

return lastId;
} catch (error) {
Expand Down

0 comments on commit f9d8b3b

Please sign in to comment.