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>
|
RomneyDa
left a comment
There was a problem hiding this comment.
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.