Guide · 12 min read

AI Reasoning Models: The Complete Guide

What reasoning models are, how they differ from standard LLMs, when to use them, and how Obsidyn's visible reasoning trace changes the way you work with AI.

1. What is an AI reasoning model?

A reasoning model is a large language model trained to spend extra compute on thinking before it answers. Instead of predicting the next token in one straight shot, it generates an internal chain of thought — a sequence of intermediate steps, self-checks, and revisions — and only then produces the final reply. The result is dramatically better performance on tasks that require multi-step logic: math, code, planning, formal proofs, and homework word problems that trip up normal chatbots.

The category exploded in 2024–2025 with OpenAI's o-series, DeepSeek R1, Google's Gemini thinking variants, and Anthropic's extended-thinking Claude. All of them share the same core idea: trade latency for correctness.

2. Reasoning models vs. standard LLMs

A standard LLM answers instantly because it doesn't stop to check itself. Ask it a hard word problem and it will confidently type out a wrong answer in one breath. A reasoning model, given the same prompt, will pause, work through the problem in hidden steps, catch its own mistakes, and then deliver a shorter, sharper answer.

  • Standard LLM: fast, cheap, great for chat, summaries, drafts.
  • Reasoning model: slower, more expensive, wins at math, code, logic, planning.
  • Multimodal reasoning model (like Obsidyn): reasons over text plus images, diagrams, and screenshots.

3. How LLM reasoning actually works

Under the hood, reasoning models use techniques that pre-2024 models didn't: reinforcement learning on chains of thought, self-consistency (sampling many reasoning paths and picking the most agreed-upon answer), tool use during the thinking phase, and dynamic compute — spending more tokens on harder questions and fewer on easy ones. Some models expose the trace to the user. Others hide it and show only the conclusion.

The visible-trace approach is what makes reasoning models trustworthy for teaching and debugging: you can watch the model's work, catch a wrong assumption, and correct it before the answer lands.

4. When to use a reasoning model

Reach for a reasoning model when the task involves any of the following:

  • Math and physics word problems — the visible steps matter as much as the answer.
  • Debugging code — the model needs to trace through state, not guess.
  • Multi-step planning — travel itineraries, project breakdowns, research plans.
  • Legal, medical, or financial reasoning where a wrong shortcut is worse than a slow answer.
  • Homework tutoring where the goal is understanding, not just a final number.

For casual chat, summarization, and rewrites, a standard LLM is still the right call.

5. Limits and honest tradeoffs

Reasoning is not free. Real tradeoffs:

  • Latency. Answers can take 10–60 seconds instead of 1–2.
  • Cost. More tokens in the trace means more compute billed.
  • Overthinking. On trivial questions, a reasoning model can spiral. Good products route easy questions to a fast model.
  • Not truth. A confident reasoning chain can still reach the wrong conclusion. Verify anything that matters.

6. How Obsidyn approaches reasoning

Obsidyn is a multimodal reasoning model with a visible thinking trace. You see the steps as they form. On homework problems the trace becomes a lesson: the answer is hidden by default so the student has to work through the reasoning themselves. On canvas builds — games, sites, prototypes — the trace shows why the AI made each structural choice, so you can steer it before code lands.

The Capabilities page covers the six things Obsidyn does. The Manifesto covers the vows behind them.

7. FAQ

Are reasoning models the same as chain-of-thought prompting?

No. Chain-of-thought is a prompting trick you apply to any LLM. Reasoning models are trained end-to-end to reason natively — the behavior is built into the weights, not asked for at runtime.

Do reasoning models hallucinate less?

Less on multi-step tasks, yes. On single-shot factual recall the improvement is smaller. Ground important claims in retrieval.

Can I see the reasoning trace?

In Obsidyn, yes — the trace is a first-class part of the UI. Other providers vary; some show a summary, some hide the trace entirely.