You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2026. It is now read-only.
Problem
The hardcoded Gemini model list in the codebase is outdated. Currently, only 3 models are available for selection:
gemini-2.5-progemini-2.5-flashgemini-2.5-flash-liteHowever, Google has released newer models including Gemini 3 series and Gemini 2.0 series.
Affected Files
src/index.tsvalidModels = ['gemini-2.5-pro', 'gemini-2.5-flash', 'gemini-2.5-flash-lite']src/agent/transport/handlers/GeminiTransport.tssrc/gemini/runGemini.tsREADME.mdSuggested Models to Add
Based on
@ai-sdk/gatewaytype definitions:Suggestion
Consider centralizing the model list in
src/gemini/constants.tsto avoid duplication and make future updates easier.