From 22c8d82c63284286b6cadbddd509796b1d62738f Mon Sep 17 00:00:00 2001 From: imbytecat Date: Mon, 26 Jan 2026 21:49:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0ultrabrain=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E9=85=8D=E7=BD=AE=E5=B9=B6=E8=B0=83=E6=95=B4=E6=8E=A8?= =?UTF-8?q?=E7=90=86=E5=BC=BA=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新ultrabrain模型配置为gpt-5.2-codex版本 - 将 GPT-5.2 和 GPT-5.2-Codex 模型的推理强度配置为 xhigh,并移除冗余的模型条目。 --- oh-my-opencode.jsonc | 2 +- opencode.jsonc | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/oh-my-opencode.jsonc b/oh-my-opencode.jsonc index 2502be3..6aa79e8 100644 --- a/oh-my-opencode.jsonc +++ b/oh-my-opencode.jsonc @@ -35,7 +35,7 @@ "model": "cpa-google/gemini-3-pro-high" }, "ultrabrain": { - "model": "packy-openai/gpt-5.2-codex-xhigh" + "model": "packy-openai/gpt-5.2-codex" }, "artistry": { "model": "cpa-google/gemini-3-pro-high" diff --git a/opencode.jsonc b/opencode.jsonc index a15edeb..95d217a 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -53,17 +53,17 @@ "setCacheKey": true }, "models": { - "gpt-5.2-xhigh": { - "name": "GPT-5.2 (xhigh)" - }, "gpt-5.2": { - "name": "GPT-5.2" - }, - "gpt-5.2-codex-xhigh": { - "name": "GPT-5.2-Codex (xhigh)" + "name": "GPT-5.2", + "options": { + "reasoningEffort": "xhigh" + } }, "gpt-5.2-codex": { - "name": "GPT-5.2-Codex" + "name": "GPT-5.2-Codex", + "options": { + "reasoningEffort": "xhigh" + } } } }