mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-04-21 13:37:17 +00:00
feat(ui): add Gemma 4 to ModelDialog selection list
This commit is contained in:
parent
1a5706268e
commit
aa7c8fc5f3
1 changed files with 6 additions and 0 deletions
|
|
@ -86,6 +86,7 @@ export function ModelDialog({ onClose }: ModelDialogProps): React.JSX.Element {
|
|||
}
|
||||
|
||||
const manualModels = [
|
||||
'google/gemma-4-31B-it',
|
||||
DEFAULT_GEMINI_MODEL,
|
||||
DEFAULT_GEMINI_FLASH_MODEL,
|
||||
DEFAULT_GEMINI_FLASH_LITE_MODEL,
|
||||
|
|
@ -223,6 +224,11 @@ export function ModelDialog({ onClose }: ModelDialogProps): React.JSX.Element {
|
|||
|
||||
// --- LEGACY PATH ---
|
||||
const list = [
|
||||
{
|
||||
value: 'google/gemma-4-31B-it',
|
||||
title: 'Gemma 4-31B-it (Hybrid)',
|
||||
key: 'google/gemma-4-31B-it',
|
||||
},
|
||||
{
|
||||
value: DEFAULT_GEMINI_MODEL,
|
||||
title: getDisplayString(DEFAULT_GEMINI_MODEL),
|
||||
|
|
|
|||
Loading…
Reference in a new issue