Skip to content
Discussion options

You must be logged in to vote

@leonardorey1992, the old [reliability.model_fallbacks] shape is not the current config path.

Current fallback lives on provider aliases:

  • fallback_models tries alternate model IDs on the same provider alias.
  • fallback tries other configured provider aliases.

For the same Gemini endpoint/key, use fallback_models:

[providers.models.gemini.main]
model = "gemini-2.5-flash"
fallback_models = [
  "gemini-2.0-flash",
  "gemini-2.0-flash-lite",
]

[agents.default]
model_provider = "gemini.main"

If you need different endpoints, keys, or provider families, create separate aliases and list them in fallback:

[providers.models.gemini.main]
model = "gemini-2.5-flash"
fallback = ["gemini.backup"]

[pro…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Audacity88
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants