Skip to content

Commit

Permalink
Merge pull request #354 from dcSpark/nico/add_missing_part_to_ws_message
Browse files Browse the repository at this point in the history
Fix WS and update Node
  • Loading branch information
nicarq authored Jun 30, 2024
2 parents 293523c + 155a0ba commit 2db20d5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 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.15
OLLAMA_VERSION: v0.1.47
SHINKAI_NODE_VERSION: v0.7.16
OLLAMA_VERSION: v0.1.48
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.15
OLLAMA_VERSION: v0.1.47
SHINKAI_NODE_VERSION: v0.7.16
OLLAMA_VERSION: v0.1.48
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.15
OLLAMA_VERSION: v0.1.47
SHINKAI_NODE_VERSION: v0.7.16
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.1.47"\
SHINKAI_NODE_VERSION="v0.7.15" \
OLLAMA_VERSION="v0.1.48" \
SHINKAI_NODE_VERSION="v0.7.16" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

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

#### Windows
```
$ENV:OLLAMA_VERSION="v0.1.47"
$ENV:SHINKAI_NODE_VERSION="v0.7.15"
$ENV:OLLAMA_VERSION="v0.1.48"
$ENV:SHINKAI_NODE_VERSION="v0.7.16"
$ENV:ARCH="x86_64-pc-windows-msvc"
npx ts-node ./ci-scripts/download-side-binaries.ts
```
Expand Down
2 changes: 1 addition & 1 deletion apps/shinkai-desktop/src/pages/chat/chat-conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const useWebSocketMessage = ({ enabled }: UseWebSocketMessage) => {
auth?.node_encryption_pk ?? '',
auth?.shinkai_identity ?? '',
auth?.profile ?? '',
'',
auth?.shinkai_identity ?? '',
'',
);
sendMessage(shinkaiMessage);
Expand Down

0 comments on commit 2db20d5

Please sign in to comment.