Skip to content

Commit 264b407

Browse files
committed
switch default anthropic model to claude sonnet 4
this is the model we've done the most testing with and seems to work well, even though claude sonnet 4.5 is newer
1 parent 299e63b commit 264b407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/positron-assistant/src/anthropic.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import { TokenUsage } from './tokens.js';
1414
import { availableModels } from './models.js';
1515
import { LanguageModelDataPartMimeType } from './types.js';
1616

17-
export const DEFAULT_ANTHROPIC_MODEL_NAME = 'Claude Sonnet 4.5';
18-
export const DEFAULT_ANTHROPIC_MODEL_MATCH = 'claude-sonnet-4-5';
17+
export const DEFAULT_ANTHROPIC_MODEL_NAME = 'Claude Sonnet 4';
18+
export const DEFAULT_ANTHROPIC_MODEL_MATCH = 'claude-sonnet-4';
1919

2020
/**
2121
* Options for controlling cache behavior in the Anthropic language model.

0 commit comments

Comments
 (0)