mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-29 06:25:16 -07:00
feat(core): Incorporate Gemini 3 into model config hierarchy. (#13447)
This commit is contained in:
@@ -6,6 +6,16 @@
|
||||
}
|
||||
},
|
||||
"chat-base": {
|
||||
"generateContentConfig": {
|
||||
"temperature": 1,
|
||||
"topP": 0.95,
|
||||
"thinkingConfig": {
|
||||
"includeThoughts": true
|
||||
},
|
||||
"topK": 64
|
||||
}
|
||||
},
|
||||
"chat-base-2.5": {
|
||||
"generateContentConfig": {
|
||||
"temperature": 1,
|
||||
"topP": 0.95,
|
||||
@@ -16,6 +26,17 @@
|
||||
"topK": 64
|
||||
}
|
||||
},
|
||||
"chat-base-3": {
|
||||
"generateContentConfig": {
|
||||
"temperature": 1,
|
||||
"topP": 0.95,
|
||||
"thinkingConfig": {
|
||||
"includeThoughts": true,
|
||||
"thinkingLevel": "HIGH"
|
||||
},
|
||||
"topK": 64
|
||||
}
|
||||
},
|
||||
"gemini-3-pro-preview": {
|
||||
"model": "gemini-3-pro-preview",
|
||||
"generateContentConfig": {
|
||||
@@ -23,7 +44,7 @@
|
||||
"topP": 0.95,
|
||||
"thinkingConfig": {
|
||||
"includeThoughts": true,
|
||||
"thinkingBudget": 8192
|
||||
"thinkingLevel": "HIGH"
|
||||
},
|
||||
"topK": 64
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user