Zenaique

Design shadow mode evaluation for a planned model swap from Sonnet to a smaller model

Short answer·Hard·4.0 · 0·~3 min·Asked atFreshworksPaytmYellow Ai
Attempt it

You want to migrate a chat assistant from Claude Sonnet to a smaller, cheaper model. Describe how you would run a shadow mode evaluation for two weeks before any user visible change, what you would measure, and the failure modes to watch for.

Free · 2 AI evals / day
TL;DR

Fork the production call so Sonnet still serves the user and the candidate runs in parallel, sample 10-25 percent to bound cost, score paired metrics sliced by cohort, and watch for format drift, tool-call

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Imagine you want to swap the chef at a busy restaurant for a faster, cheaper chef. You would never just put the new chef on the line during dinner service. Instead, for two weeks the old chef keeps cooking the actual plates going to customers, and the new chef cooks the same orders in a back kitchen at the same time. Nobody eats the back-kitchen food, but a panel of tasters scores both versions side by side. You also check that the new chef plates the food correctly, refuses the right special requests, and works at the right speed. At the end you decide based not just on average score but on the worst category of dish, because if the new chef is great at appetizers but terrible at desserts, the swap is not safe.

Key concepts

Concept explanation~2 min read

Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.

Shadow-mode evaluation is the most informative pre-launch test an LLM team can run because it exercises the candidate on the actual production input distribution rather than a curated golden set. Two weeks of shadow at moderate sample rate produces hundreds of thousands of paired comparisons on real traffic, which is enough to detect even small regressions and to identify which user cohorts are affected.

The design pattern is straightforward, fire both models on every sampled request, serve only the primary, log both. The discipline is in the four less-obvious choices: where in the call stack to fork, how to sample, what to measure and slice by, and how to write a go no go decision that does not get hand-waved at week two.

This card walks through the architecture, the measurement framework, the failure modes that are specific to smaller-model swaps, and the decision protocol that turns a shadow phase from data collection into an actual ship or not gate.

Architecture: fork late, run async, cap costs

The fork point matters more than most teams realize. Fork too early, before retrieval, before tool resolution, before the final system prompt is assembled, and the candidate runs against a slightly different prompt than the primary. Now every per-request difference includes a confounder, and the paired analysis is contaminated. Fork late, immediately before the model call, so the candidate sees the exact same fully-resolved prompt, retrieval results, and tool definitions as the primary.

Run the candidate asynchronously. The primary call must not wait for the candidate to complete; user-visible latency stays anchored to the primary path. Implement as a background task that fires the candidate call and writes the result to the trace store with the shared trace id. Failures on the candidate path are logged but never propagated to the user. A timeout on the candidate (e.g., 30 seconds) prevents a stuck candidate call from leaking resources.

Budget caps on the shadow path are non-negotiable. A buggy candidate that consumes 10x the tokens per request will burn the LLM bill during the shadow phase. Configure the gateway to enforce a per-request cost cap on the shadow side that is generous (maybe 3x the typical baseline cost) so a single anomalous request does not run away, plus a daily total cap on shadow spend.

Feature-flag the shadow ramp. Start at 1 percent for the first day to validate the wiring and watch for any cost or latency surprises. Ramp to 10 to 25 percent for the bulk of the two weeks once the wiring is proven.

Measurement: paired metrics, sliced by cohort, audited with humans
Failure modes that bite specifically on going-smaller swaps
Go-no-go protocol
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.

Real products, models, and research that use this idea.

  • Langfuse and LangSmith both ship dataset-runs and paired-comparison primitives that make shadow analysis a configuration choice rather than custom orchestration.
  • LiteLLM Proxy supports shadow routing where every call fires a primary and a configurable shadow model in parallel with budget caps and per-tenant routing.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QWhat if the candidate fails on one cohort but you still want to ship?
A

Route by cohort, keep Sonnet on the regressing cohort and ship the candidate on the others, behind a tenant or intent flag at the gateway; revisit when the candidate prompt is tuned.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Comparing only aggregate judge scores. The candidate can win on average while quietly regressing on an important cohort (enterprise users, long contexts, tool-using flows), and the swap then breaks the wrong customers in production.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • Dual-fire architecture with primary served and candidate logged

  • Sample rate (10-25 percent) and rationale for cost containment

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Why a circuit breaker around the primary LLM provider is more than a fancy retry
Flashcard·Medium