From ad283eb2e614dc0a2b796f96e579885b298bdadb Mon Sep 17 00:00:00 2001 From: Jacob Cable Date: Tue, 16 Dec 2025 17:27:15 +0000 Subject: [PATCH] feat(js/plugins/anthropic): add support for opus 4.5 --- js/plugins/anthropic/src/models.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/js/plugins/anthropic/src/models.ts b/js/plugins/anthropic/src/models.ts index 54225f2b24..9ba8129ef1 100644 --- a/js/plugins/anthropic/src/models.ts +++ b/js/plugins/anthropic/src/models.ts @@ -121,6 +121,20 @@ export const KNOWN_CLAUDE_MODELS: Record< }, } ), + 'claude-opus-4-5': commonRef( + 'claude-opus-4-5', + AnthropicThinkingConfigSchema, + { + supports: { + multiturn: true, + tools: true, + media: true, + systemRole: true, + output: ['text', 'json'], + constrained: 'all', + }, + } + ), }; /**