feat: 添加GPT-5.3 Codex支持并优化模型配置
- 添加新模型配置并移除重复的atlas配置项。 - 添加对 GPT-5.3 Codex 模型的支持并更新各模型的输入限制和模态配置。
This commit is contained in:
@@ -7,6 +7,13 @@
|
|||||||
"model": "cpa-anthropic/claude-opus-4-5",
|
"model": "cpa-anthropic/claude-opus-4-5",
|
||||||
"variant": "max"
|
"variant": "max"
|
||||||
},
|
},
|
||||||
|
"hephaestus": {
|
||||||
|
"model": "cpa-openai/gpt-5.3-codex",
|
||||||
|
"variant": "xhigh"
|
||||||
|
},
|
||||||
|
"atlas": {
|
||||||
|
"model": "cpa-anthropic/claude-sonnet-4-5"
|
||||||
|
},
|
||||||
"oracle": {
|
"oracle": {
|
||||||
"model": "cpa-openai/gpt-5.2",
|
"model": "cpa-openai/gpt-5.2",
|
||||||
"variant": "xhigh"
|
"variant": "xhigh"
|
||||||
@@ -31,9 +38,6 @@
|
|||||||
"momus": {
|
"momus": {
|
||||||
"model": "cpa-openai/gpt-5.2",
|
"model": "cpa-openai/gpt-5.2",
|
||||||
"variant": "xhigh"
|
"variant": "xhigh"
|
||||||
},
|
|
||||||
"atlas": {
|
|
||||||
"model": "cpa-anthropic/claude-sonnet-4-5"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"categories": {
|
"categories": {
|
||||||
|
|||||||
@@ -72,23 +72,35 @@
|
|||||||
"setCacheKey": true
|
"setCacheKey": true
|
||||||
},
|
},
|
||||||
"models": {
|
"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": {
|
"gpt-5.2": {
|
||||||
"name": "GPT-5.2",
|
"name": "GPT-5.2",
|
||||||
|
"tool_call": true,
|
||||||
"reasoning": true,
|
"reasoning": true,
|
||||||
"modalities": {
|
"modalities": {
|
||||||
"input": ["text", "image"],
|
"input": ["text", "image"],
|
||||||
"output": ["text"]
|
"output": ["text"]
|
||||||
},
|
},
|
||||||
"limit": { "context": 400000, "output": 128000 }
|
"limit": { "context": 400000, "input": 272000, "output": 128000 }
|
||||||
},
|
},
|
||||||
"gpt-5.2-codex": {
|
"gpt-5.2-codex": {
|
||||||
"name": "GPT-5.2-Codex",
|
"name": "GPT-5.2 Codex",
|
||||||
|
"tool_call": true,
|
||||||
"reasoning": true,
|
"reasoning": true,
|
||||||
"modalities": {
|
"modalities": {
|
||||||
"input": ["text", "image"],
|
"input": ["text", "image", "pdf"],
|
||||||
"output": ["text"]
|
"output": ["text"]
|
||||||
},
|
},
|
||||||
"limit": { "context": 400000, "output": 128000 }
|
"limit": { "context": 400000, "input": 272000, "output": 128000 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user