Skip to content

Commit 60681b0

Browse files
committed
feat: default to claude sonnet 4.5 in chat picker
1 parent 219cbc3 commit 60681b0

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

memory-bank/progress.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Latest Session - July 2025
44

5+
### ✅ Claude Sonnet 4.5 Default Picker Update
6+
7+
**Date**: Current Session (July 2025)
8+
**Status**: Completed
9+
10+
- Added Anthropic Claude Sonnet 4.5 to the chat modal provider list with provider branding
11+
- Promoted Anthropic Claude Sonnet 4.5 to the default chat model selection in the picker UI
12+
13+
---
14+
515
### ✅ Deep Research Model Update
616

717
**Date**: Current Session (July 2025)

packages/common/components/chat-input/chat-config.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,16 +191,16 @@ export const generateModelOptionsForProvider = (provider: string, excludePreview
191191
export const modelOptionsByProvider = {
192192
Anthropic: [
193193
{
194-
label: 'Claude 4.1 Opus',
195-
value: ChatMode.CLAUDE_4_1_OPUS,
194+
label: 'Anthropic Claude Sonnet 4.5',
195+
value: ChatMode.CLAUDE_SONNET_4_5,
196196
webSearch: true,
197197
icon: <Brain className='text-purple-500' size={16} />,
198198
providerIcon: getProviderIcon('anthropic', 14),
199199
requiredApiKey: 'ANTHROPIC_API_KEY' as keyof ApiKeys,
200200
},
201201
{
202-
label: 'Claude Sonnet 4.5',
203-
value: ChatMode.CLAUDE_SONNET_4_5,
202+
label: 'Claude 4.1 Opus',
203+
value: ChatMode.CLAUDE_4_1_OPUS,
204204
webSearch: true,
205205
icon: <Brain className='text-purple-500' size={16} />,
206206
providerIcon: getProviderIcon('anthropic', 14),
@@ -446,7 +446,7 @@ export const modelOptionsByProvider = {
446446
],
447447
};
448448

449-
// Create modelOptions with Gemini Flash as the first option
449+
// Create modelOptions with the default chat mode first (Anthropic Claude Sonnet 4.5)
450450
const allModelOptions = Object.values(modelOptionsByProvider).flat();
451451
const defaultChatModelValue = DEFAULT_CHAT_MODE;
452452
const defaultChatModelOption = allModelOptions.find(

0 commit comments

Comments
 (0)