Skip to content

Commit

Permalink
Merge pull request #431 from dcSpark/nico/bump_node_0_8_3
Browse files Browse the repository at this point in the history
Bump to Node 0.8.3 and Bump Desktop to 0.8.2
  • Loading branch information
nicarq authored Sep 12, 2024
2 parents 6315aa8 + f3e8660 commit 4db2b30
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-ci-healchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Download side binaries
env:
ARCH: x86_64-unknown-linux-gnu
SHINKAI_NODE_VERSION: v0.8.2
SHINKAI_NODE_VERSION: v0.8.3
OLLAMA_VERSION: v0.3.10
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.8.2
SHINKAI_NODE_VERSION: v0.8.3
OLLAMA_VERSION: v0.3.10
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Download side binaries
env:
ARCH: ${{ matrix.arch }}
SHINKAI_NODE_VERSION: v0.8.2
SHINKAI_NODE_VERSION: v0.8.3
OLLAMA_VERSION: v0.3.10
run: |
npx ts-node ./ci-scripts/download-side-binaries.ts
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ apps/shinkai-desktop/src-tauri/node_storage
apps/shinkai-desktop/src-tauri/external-binaries
launch.json
temp
apps/shinkai-app/android/.gradle
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,22 @@ $ git clone https://github.com/dcSpark/shinkai-apps
```
ARCH="aarch64-apple-darwin" \
OLLAMA_VERSION="v0.3.10" \
SHINKAI_NODE_VERSION="v0.8.2" \
SHINKAI_NODE_VERSION="v0.8.3" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

#### Linux
```
ARCH="x86_64-unknown-linux-gnu" \
OLLAMA_VERSION="v0.3.10"\
SHINKAI_NODE_VERSION="v0.8.2" \
SHINKAI_NODE_VERSION="v0.8.3" \
npx ts-node ./ci-scripts/download-side-binaries.ts
```

#### Windows
```
$ENV:OLLAMA_VERSION="v0.3.10"
$ENV:SHINKAI_NODE_VERSION="v0.8.2"
$ENV:SHINKAI_NODE_VERSION="v0.8.3"
$ENV:ARCH="x86_64-pc-windows-msvc"
npx ts-node ./ci-scripts/download-side-binaries.ts
```
Expand Down
2 changes: 1 addition & 1 deletion libs/shinkai-i18n/.i18nrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = defineConfig({
output: 'locales',
outputLocales: ['zh-CN', 'ja-JP', 'es-ES', 'id-ID'],
temperature: 0,
modelName: 'gpt-3.5-turbo-0125',
modelName: 'gpt-4o-mini',
splitToken: 2048,
experimental: {
jsonMode: true,
Expand Down
12 changes: 4 additions & 8 deletions libs/shinkai-node-state/src/lib/utils/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,12 @@ export const modelsConfig = {
apiUrl: 'https://api.openai.com',
modelTypes: [
{
name: 'GPT 3.5 Turbo (1106)',
value: 'gpt-3.5-turbo-1106',
name: 'GPT 4o Mini',
value: 'gpt-4o-mini',
},
{
name: 'GPT 4 Turbo',
value: 'gpt-4-1106-preview',
},
{
name: 'GPT 4 Vision',
value: 'gpt-4-vision-preview',
name: 'GPT 4o',
value: 'gpt-4o',
},
],
},
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.8.1",
"version": "0.8.2",
"license": "SEE LICENSE IN LICENSE",
"files": [
"LICENSE"
Expand Down

0 comments on commit 4db2b30

Please sign in to comment.