Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ models:

gemini:
provider: google
model: gemini-3.1-flash-lite-preview
model: gemini-3.1-flash-lite
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

[MEDIUM] Model name gemini-3.1-flash-lite may not be a valid Google Gemini identifier

The PR removes the -preview suffix from gemini-3.1-flash-lite-preview with the intent of switching to a GA model. However, public Google Gemini model catalogs document version series 1.0, 1.5, 2.0, and 2.5 — a 3.1 series is not yet confirmed as a publicly available release.

If gemini-3.1-flash-lite is not a valid model name in the Google API, this example will fail at runtime when the agent tries to invoke the Google provider.

Consider double-checking the correct GA model identifier (e.g. gemini-2.0-flash-lite or gemini-2.5-flash-lite) against the Google AI model documentation before merging.

provider_opts:
google_search: true

Expand Down
2 changes: 1 addition & 1 deletion examples/google_search_grounding.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
models:
gemini:
provider: google
model: gemini-3.1-flash-lite-preview
model: gemini-3.1-flash-lite
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

[MEDIUM] Model name gemini-3.1-flash-lite may not be a valid Google Gemini identifier

Same issue as in coder.yaml: the 3.1 version series for Gemini is not confirmed in known public model catalogs as of May 2026. If this model identifier is not recognised by the Google API, the google_search_grounding example will fail at runtime.

Please verify the correct GA model name against the Google AI model documentation (e.g. gemini-2.0-flash-lite may be the intended target).

provider_opts:
google_search: true

Expand Down
Loading