feat(google): add configurable thinking level for Gemini 3 models (#6585)

Signed-off-by: rabi <ramishra@redhat.com>
This commit is contained in:
Rabi Mishra
2026-02-05 21:17:03 +05:30
committed by GitHub
parent c02135ccec
commit 06e8b85907
4 changed files with 157 additions and 11 deletions
@@ -707,6 +707,14 @@ pub async fn configure_provider_dialog() -> anyhow::Result<bool> {
}
};
if model.to_lowercase().starts_with("gemini-3") {
let thinking_level: &str = cliclack::select("Select thinking level for Gemini 3:")
.item("low", "Low - Better latency, lighter reasoning", "")
.item("high", "High - Deeper reasoning, higher latency", "")
.interact()?;
config.set_gemini3_thinking_level(thinking_level)?;
}
// Test the configuration
let spin = spinner();
spin.start("Checking your configuration...");