All articles

System One models vs LLMs — when a decision beats a paragraph

LLMs and decision models are not competitors. They answer different questions, and using the wrong one is expensive in a way that is easy to miss.

The question is not which is better. It is which question you are asking.

A large language model answers "what should I say about this?". A System One model answers "what should I do about this?". Many teams reach for the first when they needed the second, and pay for it in latency, cost and a class of bug that only shows up under load.

Side by side

Large language modelSystem One model
OutputFree text, sometimes coerced into JSONA typed decision plus a probability distribution
Typical latency200ms – several secondsSingle-digit to low tens of milliseconds
HardwareGPU, usuallyCPU is normal
DeterminismTemperature-dependent; identical input can differSame input, same distribution
Failure modePlausible-sounding wrong proseAn invalid or low-confidence action
ConfidenceToken log-probs, poorly calibrated for the taskCalibration is an evaluated, published metric
Action spaceOpen-endedClosed and declared up front

Where the LLM is the right answer

Use a language model when the output really is language, or when the task is open-ended enough that a fixed action space would be a lie: summarising a document, drafting a reply, explaining a decision to a person, extracting structure from something genuinely unstructured, or handling a long tail of requests you could not enumerate in advance.

Where a decision model wins

Use a decision model when the set of possible answers is known and small, the call happens often, and it sits in a path where latency is a budget rather than a preference.

Routing. Triage. Scoring. Ranking. Eligibility. Escalation. Any place where the code around the model is going to end up as a switch statement anyway.

Three reasons this matters more than it first appears:

Cost compounds. A classification you run ten million times a month is a very different bill through a generative endpoint than through a small model on CPU. The per-call difference looks trivial until you multiply it.

Calibration is load-bearing. If you want to auto-approve above 0.95 and route the rest to a human, the model's confidence has to mean something. LLM token probabilities are not calibrated for your task, and nobody publishes a calibration curve for them. A decision model with a published calibration error lets you set that threshold from evidence instead of from a guess.

The action space is enforced, not requested. Asking a language model to "respond with exactly one of: billing, technical, general" works until the day it responds with "technical support" and your parser throws. A decision model cannot return an option that does not exist — the constraint is in the model, not in the prompt.

They compose

The most durable pattern is not choosing. It is using each for what it is good at:

  1. A decision model triages the incoming request. Fast, cheap, calibrated.
  2. High-confidence decisions execute directly.
  3. Low-confidence ones escalate — to a person, or to a language model with room to reason.
  4. The language model writes the final response to a human where prose is actually what is wanted.

You get the latency and cost profile of the small model on the majority of traffic, and the flexibility of the large one exactly where it earns its keep.

Getting started

Browse decision models by capability, or read what makes a System One model different.