fix: remove discontinued gpt-5.4 and gpt-5.3-codex from QTCOOL fallback model list

This commit is contained in:
晴天
2026-03-10 22:56:19 +08:00
parent d6361b4e89
commit 17b4f3d6b3
3 changed files with 2 additions and 6 deletions

View File

@@ -225,7 +225,7 @@ ClawPanel 项目组正式开放公益 AI 接口测试计划,降低用户接入
### 核心信息
- **GPT-AI 网关地址**https://gpt.qt.cool/v1
- **支持接口**/v1/chat/completions、/v1/responsesOpenAI 兼容)
- **支持模型**OpenAI 全系列GPT-5、GPT-5.1、GPT-5.2、GPT-5.3-codex、GPT-5.4 等
- **支持模型**OpenAI 全系列GPT-5、GPT-5.1、GPT-5.2 及其 Codex 变体
- **费用**:测试期间所有调用成本由项目组内部承担,用户无需付费
- **限制**:无请求限制
- **用户后台**https://gpt.qt.cool/user查看用量、提交工单

View File

@@ -23,9 +23,7 @@ const QTCOOL = {
site: 'https://gpt.qt.cool/',
usageUrl: 'https://gpt.qt.cool/user?key=',
models: [
{ id: 'gpt-5.4', name: 'GPT-5.4', hot: true },
{ id: 'gpt-5.3-codex', name: 'GPT-5.3 Codex' },
{ id: 'gpt-5.2-codex', name: 'GPT-5.2 Codex' },
{ id: 'gpt-5.2-codex', name: 'GPT-5.2 Codex', hot: true },
{ id: 'gpt-5.2', name: 'GPT-5.2' },
{ id: 'gpt-5.1-codex-max', name: 'GPT-5.1 Codex Max' },
{ id: 'gpt-5.1-codex-mini', name: 'GPT-5.1 Codex Mini' },

View File

@@ -32,8 +32,6 @@ const QTCOOL = {
providerKey: 'qtcool',
api: 'openai-completions',
models: [
{ id: 'gpt-5.4', name: 'GPT-5.4', contextWindow: 128000 },
{ id: 'gpt-5.3-codex', name: 'GPT-5.3 Codex', contextWindow: 128000, reasoning: true },
{ id: 'gpt-5.2-codex', name: 'GPT-5.2 Codex', contextWindow: 128000, reasoning: true },
{ id: 'gpt-5.2', name: 'GPT-5.2', contextWindow: 128000 },
{ id: 'gpt-5.1-codex-max', name: 'GPT-5.1 Codex Max', contextWindow: 128000, reasoning: true },