release v1.2.6
This commit is contained in:
parent
f998ff239a
commit
25a41e51b3
1
.github/workflows/release.yml
vendored
1
.github/workflows/release.yml
vendored
@ -77,6 +77,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
go-version: '1.20.5'
|
go-version: '1.20.5'
|
||||||
- run: |
|
- run: |
|
||||||
|
sudo apt-get update
|
||||||
sudo apt-get install upx
|
sudo apt-get install upx
|
||||||
sudo apt-get install build-essential libgtk-3-dev libwebkit2gtk-4.0-dev
|
sudo apt-get install build-essential libgtk-3-dev libwebkit2gtk-4.0-dev
|
||||||
go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
## Changes
|
## Changes
|
||||||
|
|
||||||
- add usage and exact model name to API
|
- add DPI Scaling setting
|
||||||
- embeddings API compatible with openai api and langchain (sdk)
|
- allow custom api url, key, model
|
||||||
- update manifest
|
- add chat and completion error messages
|
||||||
- refactor and chore
|
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
|
@ -153,5 +153,6 @@
|
|||||||
"Restart the app to apply DPI Scaling.": "重启应用以使显示缩放生效",
|
"Restart the app to apply DPI Scaling.": "重启应用以使显示缩放生效",
|
||||||
"Restart": "重启",
|
"Restart": "重启",
|
||||||
"API Chat Model Name": "API聊天模型名",
|
"API Chat Model Name": "API聊天模型名",
|
||||||
"API Completion Model Name": "API补全模型名"
|
"API Completion Model Name": "API补全模型名",
|
||||||
|
"Localhost": "本地"
|
||||||
}
|
}
|
@ -197,8 +197,8 @@ export const Settings: FC = observer(() => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}}>
|
}}>
|
||||||
|
<Option value="">{t('Localhost')!}</Option>
|
||||||
<Option value="https://api.openai.com">OpenAI</Option>
|
<Option value="https://api.openai.com">OpenAI</Option>
|
||||||
<Option value="">Clear</Option>
|
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
} />
|
} />
|
||||||
|
Loading…
Reference in New Issue
Block a user