From 3b0187eb7bc288715142d8980a00df8ccfad9fdb Mon Sep 17 00:00:00 2001 From: kasparovabi <104397842+kasparovabi@users.noreply.github.com> Date: Thu, 20 Aug 2026 13:54:16 +0300 Subject: [PATCH] Update retired Claude model id in the hamilton-llm skill The Anthropic API stopped serving claude-3-5-sonnet-20241022 on 28 October 2025. The Anthropic branch of the provider-switching example still passes that id to messages.create. --- .claude-plugin/skills/llm/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude-plugin/skills/llm/SKILL.md b/.claude-plugin/skills/llm/SKILL.md index 12bf5a9b4..8ece6ef36 100644 --- a/.claude-plugin/skills/llm/SKILL.md +++ b/.claude-plugin/skills/llm/SKILL.md @@ -193,7 +193,7 @@ async def llm_response__anthropic( ) -> str: """Generate with Anthropic.""" response = await llm_client.messages.create( - model="claude-3-5-sonnet-20241022", + model="claude-sonnet-4-6", max_tokens=1024, messages=[{"role": "user", "content": prompt}] )