Skip to content

Commit 060c9c3

Browse files
authored
- improve: ollama v0.7.43 - shinkai-node v0.7.12 (#332)
1 parent c296775 commit 060c9c3

File tree

6 files changed

+39
-15
lines changed

6 files changed

+39
-15
lines changed

.github/workflows/pr-ci-healchecks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
- name: Download side binaries
3939
env:
4040
ARCH: x86_64-unknown-linux-gnu
41-
SHINKAI_NODE_VERSION: v0.7.11
42-
OLLAMA_VERSION: v0.1.42
41+
SHINKAI_NODE_VERSION: v0.7.12
42+
OLLAMA_VERSION: v0.1.43
4343
run: |
4444
npx ts-node ./ci-scripts/download-side-binaries.ts
4545

.github/workflows/release-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ jobs:
197197
- name: Download side binaries
198198
env:
199199
ARCH: ${{ matrix.arch }}
200-
SHINKAI_NODE_VERSION: v0.7.11
201-
OLLAMA_VERSION: v0.1.42
200+
SHINKAI_NODE_VERSION: v0.7.12
201+
OLLAMA_VERSION: v0.1.43
202202
run: |
203203
npx ts-node ./ci-scripts/download-side-binaries.ts
204204

.github/workflows/release-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ jobs:
195195
- name: Download side binaries
196196
env:
197197
ARCH: ${{ matrix.arch }}
198-
SHINKAI_NODE_VERSION: v0.7.11
199-
OLLAMA_VERSION: v0.1.42
198+
SHINKAI_NODE_VERSION: v0.7.12
199+
OLLAMA_VERSION: v0.1.43
200200
run: |
201201
npx ts-node ./ci-scripts/download-side-binaries.ts
202202

README.md

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,42 @@ To get started first clone this repo:
3333

3434
```
3535
$ git clone https://github.com/dcSpark/shinkai-apps
36+
```
37+
38+
### Download side binaries:
39+
40+
#### Macos
41+
```
42+
ARCH="aarch64-apple-darwin" \
43+
OLLAMA_VERSION="v0.1.43"\
44+
SHINKAI_NODE_VERSION="v0.7.12" \
45+
npx ts-node ./ci-scripts/download-side-binaries.ts
46+
```
3647

37-
# Download side binaries. IE:
38-
ARCH="aarch64-apple-darwin" OLLAMA_VERSION="v0.1.42" SHINKAI_NODE_VERSION="v0.7.11" npx ts-node ./ci-scripts/download-side-binaries.ts
48+
#### Linux
49+
```
50+
ARCH="x86_64-unknown-linux-gnu" \
51+
OLLAMA_VERSION="v0.1.43"\
52+
SHINKAI_NODE_VERSION="v0.7.12" \
53+
npx ts-node ./ci-scripts/download-side-binaries.ts
54+
```
55+
56+
#### Windows
57+
```
58+
$ENV:OLLAMA_VERSION="v0.1.43"
59+
$ENV:SHINKAI_NODE_VERSION="v0.7.12"
60+
$ENV:ARCH="x86_64-pc-windows-msvc"
61+
npx ts-node ./ci-scripts/download-side-binaries.ts
3962
```
4063

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

4367
```
44-
$ cd shinkai-apps
45-
$ nvm use
46-
$ npm ci
47-
$ npx nx serve {project-name}
68+
cd shinkai-apps
69+
nvm use
70+
npm ci
71+
npx nx serve {project-name} # IE: npx nx serve shinkai-desktop
4872
```
4973

5074
### Project specific configurations

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shinkai/source",
3-
"version": "0.7.16",
3+
"version": "0.7.17",
44
"license": "SEE LICENSE IN LICENSE",
55
"files": [
66
"LICENSE"

0 commit comments

Comments
 (0)