File tree Expand file tree Collapse file tree 6 files changed +39
-15
lines changed Expand file tree Collapse file tree 6 files changed +39
-15
lines changed Original file line number Diff line number Diff line change 38
38
- name : Download side binaries
39
39
env :
40
40
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
43
43
run : |
44
44
npx ts-node ./ci-scripts/download-side-binaries.ts
45
45
Original file line number Diff line number Diff line change @@ -197,8 +197,8 @@ jobs:
197
197
- name : Download side binaries
198
198
env :
199
199
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
202
202
run : |
203
203
npx ts-node ./ci-scripts/download-side-binaries.ts
204
204
Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ jobs:
195
195
- name : Download side binaries
196
196
env :
197
197
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
200
200
run : |
201
201
npx ts-node ./ci-scripts/download-side-binaries.ts
202
202
Original file line number Diff line number Diff line change @@ -33,18 +33,42 @@ To get started first clone this repo:
33
33
34
34
```
35
35
$ 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
+ ```
36
47
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
39
62
```
40
63
64
+ ### Run one of the projects
41
65
Once you have done that simply use ` npm ` to compile/serve it yourself:
42
66
43
67
```
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
48
72
```
49
73
50
74
### Project specific configurations
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @shinkai/source" ,
3
- "version" : " 0.7.16 " ,
3
+ "version" : " 0.7.17 " ,
4
4
"license" : " SEE LICENSE IN LICENSE" ,
5
5
"files" : [
6
6
" LICENSE"
You can’t perform that action at this time.
0 commit comments