Skip to content

Commit

Permalink
- improve: ollama v0.7.43 - shinkai-node v0.7.12 (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol authored Jun 13, 2024
1 parent c296775 commit 060c9c3
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-ci-healchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Download side binaries
env:
ARCH: x86_64-unknown-linux-gnu
SHINKAI_NODE_VERSION: v0.7.11
OLLAMA_VERSION: v0.1.42
SHINKAI_NODE_VERSION: v0.7.12
OLLAMA_VERSION: v0.1.43
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.11
OLLAMA_VERSION: v0.1.42
SHINKAI_NODE_VERSION: v0.7.12
OLLAMA_VERSION: v0.1.43
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.7.11
OLLAMA_VERSION: v0.1.42
SHINKAI_NODE_VERSION: v0.7.12
OLLAMA_VERSION: v0.1.43
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
36 changes: 30 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,42 @@ To get started first clone this repo:

```
$ git clone https://github.com/dcSpark/shinkai-apps
```

### Download side binaries:

#### Macos
```
ARCH="aarch64-apple-darwin" \
OLLAMA_VERSION="v0.1.43"\
SHINKAI_NODE_VERSION="v0.7.12" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

# Download side binaries. IE:
ARCH="aarch64-apple-darwin" OLLAMA_VERSION="v0.1.42" SHINKAI_NODE_VERSION="v0.7.11" npx ts-node ./ci-scripts/download-side-binaries.ts
#### Linux
```
ARCH="x86_64-unknown-linux-gnu" \
OLLAMA_VERSION="v0.1.43"\
SHINKAI_NODE_VERSION="v0.7.12" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

#### Windows
```
$ENV:OLLAMA_VERSION="v0.1.43"
$ENV:SHINKAI_NODE_VERSION="v0.7.12"
$ENV:ARCH="x86_64-pc-windows-msvc"
npx ts-node ./ci-scripts/download-side-binaries.ts
```

### Run one of the projects
Once you have done that simply use `npm` to compile/serve it yourself:

```
$ cd shinkai-apps
$ nvm use
$ npm ci
$ npx nx serve {project-name}
cd shinkai-apps
nvm use
npm ci
npx nx serve {project-name} # IE: npx nx serve shinkai-desktop
```

### Project specific configurations
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.16",
"version": "0.7.17",
"license": "SEE LICENSE IN LICENSE",
"files": [
"LICENSE"
Expand Down

0 comments on commit 060c9c3

Please sign in to comment.