Skip to content

Commit

Permalink
- feature: release v0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed May 18, 2024
1 parent debaf95 commit 57a3c85
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-ci-healchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Download side binaries
env:
ARCH: x86_64-unknown-linux-gnu
SHINKAI_NODE_VERSION: v0.7.5
SHINKAI_NODE_VERSION: v0.7.6
OLLAMA_VERSION: v0.1.38
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.5
SHINKAI_NODE_VERSION: v0.7.6
OLLAMA_VERSION: v0.1.38
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.5
SHINKAI_NODE_VERSION: v0.7.6
OLLAMA_VERSION: v0.1.38
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ To get started first clone this repo:
$ git clone https://github.com/dcSpark/shinkai-apps
# Download side binaries. IE:
ARCH="aarch64-apple-darwin" OLLAMA_VERSION="v0.1.38" SHINKAI_NODE_VERSION="v0.7.5" npx ts-node ./ci-scripts/download-side-binaries.ts
ARCH="aarch64-apple-darwin" OLLAMA_VERSION="v0.1.38" SHINKAI_NODE_VERSION="v0.7.6" npx ts-node ./ci-scripts/download-side-binaries.ts
```

Once you have done that simply use `npm` to compile/serve it yourself:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const OLLAMA_MODELS: OllamaModel[] = [
name: 'Llama-3 Gradient',
description:
"This model extends LLama-3 8B's context length from 8k to over 1m tokens.",
contextLength: 1040000,
contextLength: 256000,
quality: OllamaModelQuality.Medium,
speed: OllamaModelSpeed.Fast,
size: 4.7,
Expand Down Expand Up @@ -97,7 +97,7 @@ export const OLLAMA_MODELS: OllamaModel[] = [
name: 'Dolphin 2.9 Llama 3',
description:
"Dolphin-2.9 has a variety of instruction, conversational, and coding skills. It also has initial agentic abilities and supports function calling.",
contextLength: 256000,
contextLength: 8000,
quality: OllamaModelQuality.Medium,
speed: OllamaModelSpeed.Average,
size: 5.1,
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shinkai/source",
"version": "0.7.4",
"version": "0.7.5",
"license": "MIT",
"scripts": {
"postinstall": "npx patch-package"
Expand Down

0 comments on commit 57a3c85

Please sign in to comment.