Use case

LLM Model Migration Testing

Compare a candidate model with your current production baseline on the same prompts, test cases, and scoring rules before switching.

View example report

What to evaluate

Known-good baseline

Run the current production route first so the migration is judged against behavior users already rely on.

Representative case set

Include normal traffic, high-risk edge cases, format contracts, and failures previously observed in production.

Quality, cost, and latency

Review failed outputs alongside provider-reported or estimated cost and latency when those measurements are available.

Explicit release decision

Document whether to switch, keep the current model, revise the prompt, or route only a narrow workload to the candidate.

Checks

Build the comparison around observable failures.

PromptLens works best when each model is judged against the same dataset rows and pass criteria.

No critical pass-to-fail flips
Required output format remains stable
High-risk cases meet the same release bar
Cost and latency tradeoffs are visible
The selected route is recorded explicitly
Evaluation example

A practical model migration comparison

Freeze the prompt version, temperature, dataset, and scoring method. Run the current model route as the baseline, then run the candidate route against the exact same cases.

Start the review with cases that passed under the current model and fail under the candidate. A lower average cost does not justify a migration if the failures cluster around expensive customer or safety scenarios.

The outcome can be narrower than a full switch. A candidate may be good enough for classification while the current model remains necessary for complex support answers. Preserve that reasoning in the report.

Migration test plan

{
  baseline_route: "current-production-model",
  candidate_route: "candidate-model",
  hold_constant: [
    "prompt version",
    "temperature",
    "test cases",
    "scoring method"
  ],
  release_bar: {
    critical_regressions: 0,
    required_format_pass_rate: 100
  }
}

Turn this workflow into a report.

Compare the model outputs, score the failures, and share the decision record with the team.