-
Notifications
You must be signed in to change notification settings - Fork 150
Fix: Correct model ID for Gemini 3 Pro in GitHub provider #95
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -84,7 +84,7 @@ export const PROVIDER_MODELS = { | |||||
| // GitHub Copilot - Google models | ||||||
| { id: "gemini-2.5-pro", name: "Gemini 2.5 Pro" }, | ||||||
| { id: "gemini-3-flash", name: "Gemini 3 Flash" }, | ||||||
| { id: "gemini-3-pro", name: "Gemini 3 Pro" }, | ||||||
| { id: "gemini-3-pro-preview", name: "Gemini 3 Pro" }, | ||||||
|
||||||
| { id: "gemini-3-pro-preview", name: "Gemini 3 Pro" }, | |
| { id: "gemini-3-pro", name: "Gemini 3 Pro" }, |
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.
The display name here is inconsistent with the actual model ID and with other entries in this same file (e.g.,
gcandgeminiboth labelgemini-3-pro-previewas “Gemini 3 Pro Preview”). Keeping the name as “Gemini 3 Pro” may confuse users who expect the stable/non-preview variant; consider renaming to “Gemini 3 Pro Preview” for consistency/clarity.