Skip to content

Add Gemini 3.6 Flash and 3.5 Flash-Lite; default to Gemini 3.6 Flash#122

Open
mquirosbloch wants to merge 1 commit into
google-gemini:mainfrom
mquirosbloch:claude/computer-use-fork-pr-cmc9cl
Open

Add Gemini 3.6 Flash and 3.5 Flash-Lite; default to Gemini 3.6 Flash#122
mquirosbloch wants to merge 1 commit into
google-gemini:mainfrom
mquirosbloch:claude/computer-use-fork-pr-cmc9cl

Conversation

@mquirosbloch

Copy link
Copy Markdown
Collaborator

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.

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.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01UwVSxfLmjXmRx3Ukx5gbkf
@mquirosbloch
mquirosbloch requested a review from reachkritz July 23, 2026 16:44
@google-cla

google-cla Bot commented Jul 23, 2026

Copy link
Copy Markdown

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the default model to gemini-3.6-flash in both the documentation (README.md) and the CLI argument parser (main.py), and documents additional supported models. The review feedback suggests restricting the --model CLI argument to the predefined set of supported models using the choices parameter in argparse to improve validation, and using double quotes for consistency.

Comment thread main.py
Comment on lines 55 to 59
parser.add_argument(
"--model",
default='gemini-3.5-flash',
default='gemini-3.6-flash',
help="Set which main model to use.",
)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve validation and automatically generate helpful error messages, we should restrict the --model argument to the predefined set of supported models using the choices parameter in argparse. Additionally, let's use double quotes for the default value to maintain consistency with the rest of the file.

    parser.add_argument(
        "--model",
        default="gemini-3.6-flash",
        choices=(
            "gemini-3.6-flash",
            "gemini-3.5-flash-lite",
            "gemini-3.5-flash",
            "gemini-2.5-computer-use-preview-10-2025",
            "gemini-3-flash-preview",
            "gemini-3.1-pro-preview",
        ),
        help="Set which main model to use.",
    )
References
  1. Use the choices parameter in argparse for arguments with a predefined set of valid string values to enable automatic validation and help message generation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants