Skip to content
Merged
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
17 changes: 16 additions & 1 deletion src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ export const aimlApiModelKeys = [
export const googleApiModelKeys = [
'googleGemini3_1Pro',
'googleGemini3_5Flash',
'googleGemini3_5FlashLite',
'googleGemini3_6Flash',
'googleGemini3_7Flash',
'googleGemini3Flash',
'googleGemini2_5Pro',
'googleGemini2_5Flash',
Expand Down Expand Up @@ -675,6 +678,18 @@ export const Models = {
value: 'gemini-3.5-flash',
desc: 'Google (Gemini 3.5 Flash)',
},
googleGemini3_5FlashLite: {
value: 'gemini-3.5-flash-lite',
desc: 'Google (Gemini 3.5 Flash-Lite)',
},
Comment thread
qodo-code-review[bot] marked this conversation as resolved.
googleGemini3_6Flash: {
value: 'gemini-3.6-flash',
desc: 'Google (Gemini 3.6 Flash)',
},
googleGemini3_7Flash: {
value: 'gemini-3.7-flash',
desc: 'Google (Gemini 3.7 Flash)',
},
googleGemini3Flash: {
value: 'gemini-3-flash-preview',
desc: 'Google (Gemini 3 Flash Preview)',
Expand Down Expand Up @@ -734,7 +749,7 @@ export const defaultApiModeIds = [
'claudeSonnet5Api',
'claudeHaiku45Api',
'googleGemini3_1Pro',
'googleGemini3_5Flash',
'googleGemini3_7Flash',
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Comment thread
PeterDaveHello marked this conversation as resolved.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This behavior is already covered by the generic default-reconciliation tests. This PR only changes the default IDs, so I don't think a model-specific regression test is necessary.

'mistralMediumLatest',
'openRouter_auto',
'openRouter_free',
Expand Down