How is a reasoning model different from a standard LLM?
A standard LLM predicts its response token by token with no dedicated space to work through a problem first. A reasoning model is trained to spend extra inference budget generating intermediate steps before it commits to an answer, closer to working through a problem on scratch paper than answering off the top of its head. The category spans several implementations, OpenAI’s o-series and its reasoning modes, Anthropic’s Claude extended thinking, and open releases like DeepSeek-R1 all generate this kind of intermediate reasoning, though the exact mechanism differs by vendor and shifts often enough that the durable fact worth learning is the category, not which model currently leads it.
When is the extra latency and cost worth paying?
For tasks with a genuinely correct answer reached through several dependent steps, math, debugging, multi-step planning inside an agentic workflow, the accuracy gain is real and worth the wait. For a simple lookup, a format conversion, or anything latency-sensitive, a standard model at low temperature is faster and cheaper for the same or better result, which is why picking a temperature and a reasoning tier is a per-task decision, not a permanent default.