Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/providers/anthropic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion src/tests/openrouter-models-config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
];

Expand Down