feat(core): Incorporate Gemini 3 into model config hierarchy. (#13447)

This commit is contained in:
joshualitt
2025-11-20 13:07:14 -08:00
committed by GitHub
parent 83d0bdc32e
commit 8e531dc029
4 changed files with 100 additions and 23 deletions
@@ -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
}