mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-22 17:00:10 +08:00
fix: remove discontinued gpt-5.4 and gpt-5.3-codex from QTCOOL fallback model list
This commit is contained in:
@@ -225,7 +225,7 @@ ClawPanel 项目组正式开放公益 AI 接口测试计划,降低用户接入
|
||||
### 核心信息
|
||||
- **GPT-AI 网关地址**:https://gpt.qt.cool/v1
|
||||
- **支持接口**:/v1/chat/completions、/v1/responses(OpenAI 兼容)
|
||||
- **支持模型**: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(查看用量、提交工单)
|
||||
|
||||
@@ -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' },
|
||||
|
||||
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user