Skip to content

Commit

Permalink
- fix: downgrade ollama v0.1.48 (#363)
Browse files Browse the repository at this point in the history
ollama-0.2.1+assets is around 2gb+ and the limit for CAB files generated under the hood during the bundling process is 2gb so ollama 0.2.1 is broke our bundling system
  • Loading branch information
agallardol authored Jul 10, 2024
1 parent ec75475 commit 30f689d
Show file tree
Hide file tree
Showing 4 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 @@ -39,7 +39,7 @@ jobs:
env:
ARCH: x86_64-unknown-linux-gnu
SHINKAI_NODE_VERSION: v0.7.18
OLLAMA_VERSION: v0.2.1
OLLAMA_VERSION: v0.1.48
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 @@ -198,7 +198,7 @@ jobs:
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.18
OLLAMA_VERSION: v0.2.1
OLLAMA_VERSION: v0.1.48
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 @@ -196,7 +196,7 @@ jobs:
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.18
OLLAMA_VERSION: v0.2.1
OLLAMA_VERSION: v0.1.48
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,23 @@ $ git clone https://github.com/dcSpark/shinkai-apps
#### Macos
```
ARCH="aarch64-apple-darwin" \
OLLAMA_VERSION="v0.2.1" \
SHINKAI_NODE_VERSION="v0.7.17" \
OLLAMA_VERSION="v0.1.48" \
SHINKAI_NODE_VERSION="v0.7.18" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

#### Linux
```
ARCH="x86_64-unknown-linux-gnu" \
OLLAMA_VERSION="v0.2.1"\
SHINKAI_NODE_VERSION="v0.7.17" \
OLLAMA_VERSION="v0.1.48"\
SHINKAI_NODE_VERSION="v0.7.18" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

#### Windows
```
$ENV:OLLAMA_VERSION="v0.2.1"
$ENV:SHINKAI_NODE_VERSION="v0.7.17"
$ENV:OLLAMA_VERSION="v0.1.48"
$ENV:SHINKAI_NODE_VERSION="v0.7.18"
$ENV:ARCH="x86_64-pc-windows-msvc"
npx ts-node ./ci-scripts/download-side-binaries.ts
```
Expand Down

0 comments on commit 30f689d

Please sign in to comment.