feat(core): set default chat base model configs (#12951)

This commit is contained in:
anthony bushong
2025-11-12 17:01:31 -08:00
committed by GitHub
parent ee7065f665
commit 2987b473dd
4 changed files with 30 additions and 17 deletions
@@ -27,6 +27,9 @@ export const DEFAULT_MODEL_CONFIGS: ModelConfigServiceConfig = {
includeThoughts: true,
thinkingBudget: -1,
},
temperature: 1,
topP: 0.95,
topK: 64,
},
},
},
@@ -7,45 +7,49 @@
},
"chat-base": {
"generateContentConfig": {
"temperature": 0,
"topP": 1,
"temperature": 1,
"topP": 0.95,
"thinkingConfig": {
"includeThoughts": true,
"thinkingBudget": -1
}
},
"topK": 64
}
},
"gemini-2.5-pro": {
"model": "gemini-2.5-pro",
"generateContentConfig": {
"temperature": 0,
"topP": 1,
"temperature": 1,
"topP": 0.95,
"thinkingConfig": {
"includeThoughts": true,
"thinkingBudget": -1
}
},
"topK": 64
}
},
"gemini-2.5-flash": {
"model": "gemini-2.5-flash",
"generateContentConfig": {
"temperature": 0,
"topP": 1,
"temperature": 1,
"topP": 0.95,
"thinkingConfig": {
"includeThoughts": true,
"thinkingBudget": -1
}
},
"topK": 64
}
},
"gemini-2.5-flash-lite": {
"model": "gemini-2.5-flash-lite",
"generateContentConfig": {
"temperature": 0,
"topP": 1,
"temperature": 1,
"topP": 0.95,
"thinkingConfig": {
"includeThoughts": true,
"thinkingBudget": -1
}
},
"topK": 64
}
},
"gemini-2.5-flash-base": {