From b985a5da05d1d597511d6cf972efe982e6dc6c29 Mon Sep 17 00:00:00 2001 From: foxhui Date: Fri, 24 Apr 2026 01:01:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20GPT=20=E7=BC=BA?= =?UTF-8?q?=E5=B0=91=E7=B3=BB=E7=BB=9F=E6=8F=90=E7=A4=BA=E8=AF=8D=20(close?= =?UTF-8?q?s=20#76)=EF=BC=8C=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8D=20GPT=20?= =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E9=80=89=E6=8B=A9=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=20(ref=20#81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ src/backend/adapter/chatgpt_text.js | 7 +++---- 2 files changed, 10 insertions(+), 4 deletions(-) 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' } ], // 无需导航处理器