diff --git a/electron-builder.yml b/electron-builder.yml index d690b695..65f510ef 100644 --- a/electron-builder.yml +++ b/electron-builder.yml @@ -80,4 +80,12 @@ afterPack: scripts/after-pack.js afterSign: scripts/notarize.js releaseInfo: releaseNotes: | - 错误修复 + 知识库增加设置功能 + 更加友好的错误提示信息 + 增加百度云千帆服务商 + 修复 Groq deepseek 模型无法使用问题 + 优化思考过程显示 @jettpark @github + 可以为助手绑定一个知识库 @eeee0717 + 修复知识库搜索崩溃问题 @yrom + 优化 o3-mini 模型输出显示问题 @teaim + 移除 QwenLM 服务商 diff --git a/package.json b/package.json index c88c54f9..00a18c84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "CherryStudio", - "version": "0.9.19", + "version": "0.9.20", "private": true, "description": "A powerful AI assistant for producer.", "main": "./out/main/index.js", diff --git a/src/renderer/src/store/llm.ts b/src/renderer/src/store/llm.ts index f98b5b42..7a54144c 100644 --- a/src/renderer/src/store/llm.ts +++ b/src/renderer/src/store/llm.ts @@ -43,16 +43,6 @@ const initialState: LlmState = { isSystem: true, enabled: false }, - { - id: 'ocoolai', - name: 'ocoolAI', - type: 'openai', - apiKey: '', - apiHost: 'https://one.ooo.cool', - models: SYSTEM_MODELS.ocoolai, - isSystem: true, - enabled: false - }, { id: 'deepseek', name: 'deepseek', @@ -63,6 +53,16 @@ const initialState: LlmState = { isSystem: true, enabled: false }, + { + id: 'ocoolai', + name: 'ocoolAI', + type: 'openai', + apiKey: '', + apiHost: 'https://one.ooo.cool', + models: SYSTEM_MODELS.ocoolai, + isSystem: true, + enabled: false + }, { id: 'baidu-cloud', name: 'Baidu Cloud',