diff --git a/CHANGELOG.md b/CHANGELOG.md index fa360e7..3e6709a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.6.7] - 2026-04-24 + +### 🐛 Fixed +- **适配器** + - 修复 ChatGPT 缺少系统提示词的问题 + - 尝试修复 ChatGPT 选择模型的问题 (目前应该是灰度测试,有些账号界面不一样,并且作者没有会员账号仅为猜测修复) + ## [3.6.6] - 2026-04-12 ### 🐛 Fixed diff --git a/src/backend/adapter/chatgpt_text.js b/src/backend/adapter/chatgpt_text.js index 940c72a..db64389 100644 --- a/src/backend/adapter/chatgpt_text.js +++ b/src/backend/adapter/chatgpt_text.js @@ -265,10 +265,9 @@ export const manifest = { // 模型列表 models: [ - { id: 'gpt-5.4', codeName: 'GPT-5.4 Instant', imagePolicy: 'optional' }, - { id: 'gpt-5.4-thinking', codeName: 'GPT-5.4 Thinking', imagePolicy: 'optional' }, - { id: 'gpt-5.3', codeName: 'GPT-5.3 Instant', imagePolicy: 'optional' }, - { id: 'gpt-5.3-thinking', codeName: 'GPT-5.3 Thinking', imagePolicy: 'optional' }, + { id: 'gpt-instant', codeName: 'Instant', imagePolicy: 'optional', type: 'text' }, + { id: 'gpt-thinking', codeName: 'Thinking', imagePolicy: 'optional', type: 'text' }, + { id: 'gpt-pro', codeName: 'Pro', imagePolicy: 'optional', type: 'text' } ], // 无需导航处理器