Large Reasoning Model (LRM)
Also called: LRM · reasoning model · thinking model
A large reasoning model (LRM) is a language model trained to work through a problem step by step in a long internal reasoning trace before giving its final answer.
A large reasoning model is still a language model, but one trained so that, before answering, it generates an extended chain of intermediate reasoning: breaking the problem down, trying an approach, checking it, backing up when it fails. Many products expose this as a "thinking" or "reasoning effort" mode.
The idea took off in 2024-2025 as vendors and open-weight labs shipped reasoning-tuned models, and it is now a standard tier next to faster non-reasoning models. Reasoning models tend to do noticeably better on math, coding, and multi-step logic, and they are commonly the model behind an agent's planning step.
The cost is latency and tokens: the reasoning trace is generated, and usually billed, before the visible answer. That is why most providers let you choose how much thinking to allow.
How it works
Two ingredients are usually cited. First, training with reinforcement learning on problems whose answers can be checked (rlvr), which rewards reasoning traces that reach correct answers. Second, spending more computation at answer time by letting the trace run longer (test-time-compute). The result is the model learning behaviors like verifying its own steps and trying alternatives. Providers differ in whether the raw trace is shown, summarized, or hidden.
Example
Asked to find why a test fails intermittently, a non-reasoning model may guess the most common cause. A reasoning model works through the code path, considers a race condition, checks whether the ordering it hypothesizes is possible, rejects one theory, and then reports the one that survives.
How it differs
LRM vs. prompting for chain-of-thought: chain-of-thought is a prompting technique you apply to any model; a reasoning model has the behavior trained in, so it reasons at length without being asked.
Common misconceptions
FAQ
What is a large reasoning model?
What is the difference between an LRM and a normal LLM?
Are reasoning models better for AI agents?
Last checked: 2026-09-20