Skip to content

Commit 2db20d5

Browse files
authored
Merge pull request #354 from dcSpark/nico/add_missing_part_to_ws_message
Fix WS and update Node
2 parents 293523c + 155a0ba commit 2db20d5

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
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.15
42-
OLLAMA_VERSION: v0.1.47
41+
SHINKAI_NODE_VERSION: v0.7.16
42+
OLLAMA_VERSION: v0.1.48
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.15
201-
OLLAMA_VERSION: v0.1.47
200+
SHINKAI_NODE_VERSION: v0.7.16
201+
OLLAMA_VERSION: v0.1.48
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.15
199-
OLLAMA_VERSION: v0.1.47
198+
SHINKAI_NODE_VERSION: v0.7.16
199+
OLLAMA_VERSION: v0.1.48
200200
run: |
201201
npx ts-node ./ci-scripts/download-side-binaries.ts
202202

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,23 @@ $ git clone https://github.com/dcSpark/shinkai-apps
4040
#### Macos
4141
```
4242
ARCH="aarch64-apple-darwin" \
43-
OLLAMA_VERSION="v0.1.47"\
44-
SHINKAI_NODE_VERSION="v0.7.15" \
43+
OLLAMA_VERSION="v0.1.48" \
44+
SHINKAI_NODE_VERSION="v0.7.16" \
4545
npx ts-node ./ci-scripts/download-side-binaries.ts
4646
```
4747

4848
#### Linux
4949
```
5050
ARCH="x86_64-unknown-linux-gnu" \
51-
OLLAMA_VERSION="v0.1.47"\
52-
SHINKAI_NODE_VERSION="v0.7.15" \
51+
OLLAMA_VERSION="v0.1.48"\
52+
SHINKAI_NODE_VERSION="v0.7.16" \
5353
npx ts-node ./ci-scripts/download-side-binaries.ts
5454
```
5555

5656
#### Windows
5757
```
58-
$ENV:OLLAMA_VERSION="v0.1.47"
59-
$ENV:SHINKAI_NODE_VERSION="v0.7.15"
58+
$ENV:OLLAMA_VERSION="v0.1.48"
59+
$ENV:SHINKAI_NODE_VERSION="v0.7.16"
6060
$ENV:ARCH="x86_64-pc-windows-msvc"
6161
npx ts-node ./ci-scripts/download-side-binaries.ts
6262
```

apps/shinkai-desktop/src/pages/chat/chat-conversation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ const useWebSocketMessage = ({ enabled }: UseWebSocketMessage) => {
167167
auth?.node_encryption_pk ?? '',
168168
auth?.shinkai_identity ?? '',
169169
auth?.profile ?? '',
170-
'',
170+
auth?.shinkai_identity ?? '',
171171
'',
172172
);
173173
sendMessage(shinkaiMessage);

0 commit comments

Comments
 (0)