Skip to content

Commit a102a62

Browse files
author
Donuts Agent
committed
fix: correct Sonnet 4.6 model ID to global.anthropic.claude-sonnet-4-6
Remove -v1:0 suffix to match actual Bedrock inference profile ID
1 parent dabda1d commit a102a62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/models/models.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ const MODEL_REGISTRY: ModelConfig[] = [
669669

670670
// Claude Sonnet 4.6
671671
{
672-
baseId: 'claude-sonnet-4-6-v1:0',
672+
baseId: 'claude-sonnet-4-6',
673673
name: 'Claude Sonnet 4.6',
674674
provider: 'anthropic',
675675
category: 'text',

src/renderer/src/contexts/SettingsContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ export const SettingsProvider: React.FC<{ children: React.ReactNode }> = ({ chil
319319

320320
// LLM Settings
321321
const defaultModel = {
322-
modelId: 'global.anthropic.claude-sonnet-4-6-v1:0',
322+
modelId: 'global.anthropic.claude-sonnet-4-6',
323323
modelName: 'Claude Sonnet 4.6 (Global)',
324324
toolUse: true,
325325
regions: BEDROCK_SUPPORTED_REGIONS,

0 commit comments

Comments
 (0)