Gemini 3 Flash (#1590)

* Gemini 3 Flash

Upgrade gemini-cli to the latest version and update the flash preset to the latest flash model.

* fmt
This commit is contained in:
Solomon
2025-12-17 18:22:42 +00:00
committed by GitHub
parent fd210419cd
commit 4b4fdb9a60
2 changed files with 2 additions and 3 deletions

View File

@@ -37,7 +37,7 @@
},
"FLASH": {
"GEMINI": {
"model": "gemini-2.5-flash",
"model": "gemini-3-flash-preview",
"yolo": true
}
},

View File

@@ -36,8 +36,7 @@ pub struct Gemini {
impl Gemini {
fn build_command_builder(&self) -> CommandBuilder {
let mut builder =
CommandBuilder::new("npx -y @google/gemini-cli@0.21.0-nightly.20251204.3da4fd5f7");
let mut builder = CommandBuilder::new("npx -y @google/gemini-cli@0.21.1");
if let Some(model) = &self.model {
builder = builder.extend_params(["--model", model.as_str()]);