From ad9fd7bbef39ae0c97e1bb0dc5d6e388a234a36a Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 6 Feb 2026 19:13:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0GPT-5.3=20Codex?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=B9=B6=E4=BC=98=E5=8C=96=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加新模型配置并移除重复的atlas配置项。 - 添加对 GPT-5.3 Codex 模型的支持并更新各模型的输入限制和模态配置。 --- oh-my-opencode.jsonc | 10 +++++++--- opencode.jsonc | 20 ++++++++++++++++---- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index 77d519d..e544dc2 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -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": { diff --git a/opencode.jsonc b/opencode.jsonc index 89659c2..7abe7dd 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -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 } } } }