feat: 添加GPT-5.3 Codex支持并优化模型配置

- 添加新模型配置并移除重复的atlas配置项。
- 添加对 GPT-5.3 Codex 模型的支持并更新各模型的输入限制和模态配置。
This commit is contained in:
2026-02-06 19:13:26 +08:00
parent b05378600f
commit ad9fd7bbef
2 changed files with 23 additions and 7 deletions

View File

@@ -7,6 +7,13 @@
"model": "cpa-anthropic/claude-opus-4-5",
"variant": "max"
},
"hephaestus": {
"model": "cpa-openai/gpt-5.3-codex",
"variant": "xhigh"
},
"atlas": {
"model": "cpa-anthropic/claude-sonnet-4-5"
},
"oracle": {
"model": "cpa-openai/gpt-5.2",
"variant": "xhigh"
@@ -31,9 +38,6 @@
"momus": {
"model": "cpa-openai/gpt-5.2",
"variant": "xhigh"
},
"atlas": {
"model": "cpa-anthropic/claude-sonnet-4-5"
}
},
"categories": {

View File

@@ -72,23 +72,35 @@
"setCacheKey": true
},
"models": {
"gpt-5.3-codex": {
"name": "GPT-5.3 Codex",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image", "pdf"],
"output": ["text"]
},
"limit": { "context": 400000, "input": 272000, "output": 128000 }
},
"gpt-5.2": {
"name": "GPT-5.2",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image"],
"output": ["text"]
},
"limit": { "context": 400000, "output": 128000 }
"limit": { "context": 400000, "input": 272000, "output": 128000 }
},
"gpt-5.2-codex": {
"name": "GPT-5.2-Codex",
"name": "GPT-5.2 Codex",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image"],
"input": ["text", "image", "pdf"],
"output": ["text"]
},
"limit": { "context": 400000, "output": 128000 }
"limit": { "context": 400000, "input": 272000, "output": 128000 }
}
}
}