-
Notifications
You must be signed in to change notification settings - Fork 360
Use a non preview gemini model #2785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| models: | ||
| gemini: | ||
| provider: google | ||
| model: gemini-3.1-flash-lite-preview | ||
| model: gemini-3.1-flash-lite | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [MEDIUM] Model name Same issue as in Please verify the correct GA model name against the Google AI model documentation (e.g. |
||
| provider_opts: | ||
| google_search: true | ||
|
|
||
|
|
||
There was a problem hiding this comment.
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-litemay not be a valid Google Gemini identifierThe PR removes the
-previewsuffix fromgemini-3.1-flash-lite-previewwith the intent of switching to a GA model. However, public Google Gemini model catalogs document version series1.0,1.5,2.0, and2.5— a3.1series is not yet confirmed as a publicly available release.If
gemini-3.1-flash-liteis 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-liteorgemini-2.5-flash-lite) against the Google AI model documentation before merging.