-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Fix: Remove deprecated gemini-2.5-pro-exp-03-25 model #8313
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
Fix: Remove deprecated gemini-2.5-pro-exp-03-25 model #8313
Conversation
- Removed gemini-2.5-pro-exp-03-25 from Gemini provider model list - Removed gemini25ProExp configuration from GUI models list - Updated VSCode config schema to exclude deprecated model - Updated VertexAI provider to remove deprecated model - Users should use gemini-2.5-pro or gemini-2.5-pro-latest instead Co-authored-by: Username <brian@continue.dev>
|
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.
No issues found across 4 files
RomneyDa
left a comment
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.
This is valid but can we
|
🎉 This PR is included in version 1.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.27.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.30.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Summary
This PR removes the deprecated Gemini 2.5 Pro Experimental model (
gemini-2.5-pro-exp-03-25) from the codebase.Root Cause
Google has deprecated the experimental Gemini 2.5 Pro model endpoint (
gemini-2.5-pro-exp-03-25). This model is no longer available through the Google Generative AI API, causing 404 errors for users trying to access it.Changes Made
gemini-2.5-pro-exp-03-25from Gemini provider model list (packages/llm-info/src/providers/gemini.ts)gemini25ProExpconfiguration from GUI models list (gui/src/pages/AddNewModel/configs/models.ts)extensions/vscode/config_schema.json)packages/llm-info/src/providers/vertexai.ts)Migration Path
Users experiencing this issue should switch to the stable Gemini 2.5 Pro model:
gemini-2.5-proorgemini-2.5-pro-latestinsteadRelated Issue
Fixes #8176
This agent session was co-authored by bdougieyo and Continue.
Summary by cubic
Removed the deprecated Gemini 2.5 Pro Experimental model (gemini-2.5-pro-exp-03-25) across providers, GUI, and config to prevent 404s after Google’s deprecation.