Skip to content

Commit 62809a7

Browse files
committed
update sonnet 4
1 parent 7c1a709 commit 62809a7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/studio/electron/main/chat/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class LlmManager {
8080
} as CoreSystemMessage;
8181
messages = [systemMessage, ...messages];
8282
}
83-
const model = await initModel(LLMProvider.ANTHROPIC, CLAUDE_MODELS.SONNET, {
83+
const model = await initModel(LLMProvider.ANTHROPIC, CLAUDE_MODELS.SONNET_4, {
8484
requestType,
8585
});
8686

packages/models/src/llm/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export enum LLMProvider {
33
}
44

55
export enum CLAUDE_MODELS {
6-
SONNET = 'claude-3-7-sonnet-20250219',
6+
SONNET_4 = 'claude-sonnet-4-20250514',
7+
SONNET_3_7 = 'claude-3-7-sonnet-20250219',
78
HAIKU = 'claude-3-5-haiku-20241022',
89
}

0 commit comments

Comments
 (0)