From 9a3ad1be2559f1c75bf33f6cb8c2d120c598318c Mon Sep 17 00:00:00 2001 From: mquirosbloch Date: Tue, 28 Jul 2026 13:48:59 +0000 Subject: [PATCH] Add Gemini 3.6 Flash and 3.5 Flash-Lite; default to Gemini 3.6 Flash Reflect the latest model launches in the available models list and switch the default model from gemini-3.5-flash to gemini-3.6-flash. - README: list gemini-3.6-flash (new default) and gemini-3.5-flash-lite, and update the --model default in the CLI arguments table. - main.py: change the --model default to gemini-3.6-flash. --- README.md | 6 ++++-- main.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd064c9..34e2492 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,9 @@ python main.py --query="Go to Google and type 'Hello World' into the search bar" You can choose the model to use by specifying the ```--model ``` flag. Available options on Gemini Developer API and Vertex AI Client: -- `gemini-3.5-flash`: This is the default model. +- `gemini-3.6-flash`: This is the default model. +- `gemini-3.5-flash-lite`: A low-latency, cost-efficient model with computer use support. +- `gemini-3.5-flash`: An earlier Gemini 3.5 Flash model with computer use support. - `gemini-2.5-computer-use-preview-10-2025`: An earlier computer use preview model. - `gemini-3-flash-preview`: The preview version of Gemini 3 Flash. @@ -147,7 +149,7 @@ The `main.py` script is the command-line interface (CLI) for running the browser | `--env` | The computer use environment to use. Must be one of the following: `playwright`, or `browserbase` | No | N/A | All | | `--initial_url` | The initial URL to load when the browser starts. | No | https://www.google.com | All | | `--highlight_mouse` | If specified, the agent will attempt to highlight the mouse cursor's position in the screenshots. This is useful for visual debugging. | No | False (not highlighted) | `playwright` | -| `--model` | The model to use. See the "Available Models" section for more information. | No | `gemini-3.5-flash` | All | +| `--model` | The model to use. See the "Available Models" section for more information. | No | `gemini-3.6-flash` | All | ### Environment Variables diff --git a/main.py b/main.py index 1ccf502..2ede12f 100644 --- a/main.py +++ b/main.py @@ -54,7 +54,7 @@ def main() -> int: ) parser.add_argument( "--model", - default='gemini-3.5-flash', + default='gemini-3.6-flash', help="Set which main model to use.", ) args = parser.parse_args()