From 4759db9e2cf3a7e2ed96039dfedd643c4dd4b112 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 30 Jan 2026 15:06:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=BA=20Claude=20Sonnet=204.5=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=A4=9A=E6=A8=A1=E6=80=81=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E5=8F=8A=E9=99=90=E5=88=B6=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为 Claude Sonnet 4.5 添加上下文和输出限制及支持输入文本、图像和 PDF 的模态功能。 --- opencode.jsonc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/opencode.jsonc b/opencode.jsonc index b969dbf..79f7ac1 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -43,7 +43,12 @@ } }, "claude-sonnet-4-5": { - "name": "Claude Sonnet 4.5" + "name": "Claude Sonnet 4.5", + "limit": { "context": 200000, "output": 64000 }, + "modalities": { + "input": ["text", "image", "pdf"], + "output": ["text"] + } } } },