From 01c63f33098787c10c07ccc682b23e2616d03359 Mon Sep 17 00:00:00 2001 From: "kiloconnect[bot]" <240665456+kiloconnect[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:52:19 +0000 Subject: [PATCH 1/2] Update CLAUDE_SONNET_CURRENT_MODEL_ID to claude-sonnet-4.6 --- src/lib/providers/anthropic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/providers/anthropic.ts b/src/lib/providers/anthropic.ts index fe82295f6..36ee771a9 100644 --- a/src/lib/providers/anthropic.ts +++ b/src/lib/providers/anthropic.ts @@ -3,7 +3,7 @@ import type { OpenRouterChatCompletionRequest } from '@/lib/providers/openrouter import { normalizeToolCallIds } from '@/lib/tool-calling'; import type OpenAI from 'openai'; -export const CLAUDE_SONNET_CURRENT_MODEL_ID = 'anthropic/claude-sonnet-4.5'; +export const CLAUDE_SONNET_CURRENT_MODEL_ID = 'anthropic/claude-sonnet-4.6'; export const CLAUDE_OPUS_CURRENT_MODEL_ID = 'anthropic/claude-opus-4.6'; From 8c77fa93fcecc0a8c2371d24da4a296eff5d0c0b Mon Sep 17 00:00:00 2001 From: "kiloconnect[bot]" <240665456+kiloconnect[bot]@users.noreply.github.com> Date: Tue, 17 Feb 2026 21:29:25 +0000 Subject: [PATCH 2/2] fix: update test to reference claude-sonnet-4.6 instead of 4.5 --- src/tests/openrouter-models-config.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/openrouter-models-config.test.ts b/src/tests/openrouter-models-config.test.ts index 7e6f49171..6fed33267 100644 --- a/src/tests/openrouter-models-config.test.ts +++ b/src/tests/openrouter-models-config.test.ts @@ -22,7 +22,7 @@ describe('OpenRouter Models Config', () => { test('preferred models should contain expected models', () => { const expectedModels = [ 'google/gemini-3-pro-preview', - 'anthropic/claude-sonnet-4.5', + 'anthropic/claude-sonnet-4.6', 'openai/gpt-5.2', ];