Skip to main content

Choosing a Production Model

Model Cards Are Spec Sheets

A publisher document is useful only when it changes a workload decision. Consider an agent that turns one day of email into a prioritized todo list: it must recover commitments, normalize dates, merge duplicates, rank work, and emit a valid structure. Some emails carry inline images, attachments, or screenshots — those are workload requirements the model's modality field either covers or doesn't. A full inbox pushes the context window — recall benchmarks test whether commitments stay recoverable as the prompt grows. The output must follow a strict schema, deduplicate, rank, and filter spam — instruction-following benchmarks approximate that constraint density.

A modern model card publishes dozens of benchmarks across coding, math, reasoning, vision, safety, and domain-specific tasks. Most are irrelevant to any specific workload. The skill is picking the few fields that map to your actual constraints — price, modality, context-vs-recall, instruction following — and reading across them.

A model card is a spec sheet, not a scorecard. Each field reports a single published measurement under specific conditions — price at listed rates, recall at a given context length, instruction-following on one benchmark. Strong in one field does not predict strong in another. A field without a published result for your workload dimension is simply unknown.

Read across the fields on a card to build a model profile. Then compare profiles across models. The result is a candidate set, not a single winner.

Model selection

A model card is a profile, not a rank

Anthropic

Claude Opus 4.6

Open Claude Opus 4.6 release report
ARCHITECTURE
BASEMixture-of-Experts (reported)REASONINGAdaptive thinking · System 1 / System 2MULTIMODALGUI navigation · high-resolution imagesCONTEXT1M advertised window · measured to 54.3% @512K

Price

$5 input / $25 output per MTok

USD / MTOK
INPUT$5.00
OUTPUT$25.00
CACHE READ$0.50
CACHE WRITE5m $6.25 · 1h $10
CACHE TTL5 minutes or 1 hour
IMPLICATION

A high-cost long-context quality envelope.

Modality

Image + text input; text output

IMPLICATION

Matches the stated email workload without overclaiming attachment support.

Context vs. recall

Vendor-published: 91.9% @256K, 78.3% @1M · Measured 68.1% at 128K, 54.3% at 512K; no 1M runs

Claude Opus 4.6 MRCR v2 8-needle retrieval curveClaude Opus 4.6 measured MRCR v2 8-needle retrieval scores across the plotted context range; multiple measured points form a full curve.100%80%60%40%0%8K128K1Mcontext length, log scalenear max windowClaude Opus 4.6 (Anthropic)Claude Opus 4.6: 98.2% at 8KClaude Opus 4.6: 84.4% at 16KClaude Opus 4.6: 86.2% at 32KClaude Opus 4.6: 74.3% at 64KClaude Opus 4.6: 68.1% at 128KClaude Opus 4.6: 69.1% at 256KClaude Opus 4.6: 54.3% at 512K — coverage ends hereClaude Opus 4.6: AUC @1M 46.9% — band average over the measured 8K–512K range, not a pointwise 1M score54.3%Claude Opus 4.6
MRCR v2 8-needlehigh effort · full measured curveBenchmark source ↗
IMPLICATION

A strong measured curve to its tested endpoint; the published 1M figure has no independent check.

Instruction following

LiveBench Instruction Following: 63.3%

LIVEBENCH · INSTRUCTION FOLLOWING63.3%
IMPLICATION

The score is comparable across the cards and provides a broad instruction-following signal.

Each field is a narrow published measurement with a known boundary. A strong price score does not predict instruction-following, and a high recall score does not guarantee reliable extraction. No card is an across-the-board winner. The comparison builds a model profile — a sense of where each model fits and where it falls short.
LiveBench Instruction Following

LiveBench measures compliance with multiple explicit constraints in language tasks. Its score combines strict all-constraints accuracy with partial per-constraint accuracy from automated checks. The reported July 2026 scores are a broad instruction-following signal, not a direct evaluation of email extraction, date normalization, deduplication, ranking, or schema validity. View the methodology and leaderboard.

When comparing cards, "context vs. recall" points back to the retrieval graph — capacity and recall are separate published signals. The cross-model comparison produces a candidate shortlist, not a production route. Run the labeled inbox set before routing real work, and score commitment recall, date normalization, duplicate handling, ranking, schema validity, latency, and cost.

Published specifications

A model card describes a released checkpoint. A system card describes a provider's assessed safety scope. A release report describes selected published results. Each is release-specific; none replaces a local evaluation of the agent and serving environment.

Marketing Translator

LLM marketing often starts with a familiar launch claim and hides the operational behavior underneath. Translate the claim before evaluating the system.

Marketing Translator

Translate launch claims into operational reality.

Anthropic Mythos launch says

The most capable model we’ve ever trained.

Engineering reality

Larger model: slower inference and higher token cost.

Decoder note

Use it when the quality gain beats slower feedback and premium spend.

These translations are not cynicism. They are operational clarity. Once you translate the claim, you can evaluate the system like an engineer.

Useful skepticism

Do not ask, "Is this model smart?" Ask, "Under what workload, constraints, cost profile, and failure tolerance does this model perform well?"

There Is No Best LLM

There is no best LLM in isolation. There is only a model that fits a workload, a constraint set, and a verification strategy.

A model can be stronger at coding and weaker at long-context recall. It can be faster because it spends less compute. It can look better on a benchmark and still be wrong for your system because the benchmark measured the wrong bottleneck. Treat every model claim as a narrow engineering claim: what improved, under what setup, at what cost, and does that matter for this task?

When an output fails, diagnose before switching models. If the model never had the right information, the fix is grounding: retrieval, search, file access, smaller context, or better source selection. If the model had the information and used it badly, the fix is inference support: a stronger model, a narrower task, examples, tests, evals, or review.

That is the operating model these chapters build on. LLMs are probabilistic engines, not coworkers. They produce candidate work from the context you give them. Production reliability comes from the system around the model: grounding facts, managing context, constraining and routing work, validation, and verifying results before accepting them.

The useful abstraction is:

A probabilistic engine inside a deterministic control plane.

The next chapter covers that control plane: how agents wrap the LLM brain with software that can plan, use tools, observe results, and continue the loop.


Next: Agents Demystified