From 2cc19b9b0b53096697f9efdac80fb257bac1f220 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sat, 7 Feb 2026 06:03:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20Claude=20Opus=204.?= =?UTF-8?q?6=20=E6=A8=A1=E5=9E=8B=E4=B8=8A=E4=B8=8B=E6=96=87=E4=B8=8E?= =?UTF-8?q?=E8=BE=93=E5=87=BA=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新 Claude Opus 4.6 模型的上下文限制为 1000000,输出限制为 128000,并调整模型名称和配置。 --- opencode.jsonc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opencode.jsonc b/opencode.jsonc index a34cfa9..bf9c4fb 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -15,15 +15,15 @@ "apiKey": "{env:CPA_API_KEY}" }, "models": { - "claude-opus-4-5": { - "name": "Claude Opus 4.5", + "claude-opus-4-6": { + "name": "Claude Opus 4.6", "tool_call": true, "reasoning": true, "modalities": { "input": ["text", "image", "pdf"], "output": ["text"] }, - "limit": { "context": 200000, "output": 64000 } + "limit": { "context": 1000000, "output": 128000 } }, "claude-sonnet-4-5": { "name": "Claude Sonnet 4.5",