feat: 为 Claude Sonnet 4.5 添加多模态支持及限制配置

- 为 Claude Sonnet 4.5 添加上下文和输出限制及支持输入文本、图像和 PDF 的模态功能。
This commit is contained in:
2026-01-30 15:06:50 +08:00
parent 52317b439f
commit 4759db9e2c

View File

@@ -43,7 +43,12 @@
} }
}, },
"claude-sonnet-4-5": { "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"]
}
} }
} }
}, },