C.W.K.
Stream
Lesson 02 of 10 · published

Extended Thinking Modes — Claude, OpenAI, Gemini Differences

~20 min · reasoning, extended-thinking, providers

Level 0Apprentice
0 XP0/100 lessons0/14 achievements
0/120 XP to next level120 XP to go0% complete

Native reasoning is a separate API surface

Claude has Extended Thinking; OpenAI has the o-series and reasoning-effort knobs on GPT-5.5; Gemini has Thinking modes. They are not interchangeable, and the prompt that works on one will not necessarily work on the others.

Per-provider quirks

  • Claude (Extended Thinking) — explicit thinking budget in tokens. Thinking is a separate part of the response (visible to operator, not always to user). You can prompt the thinking ('summarize the constraint first, then …'), but the model decides how to use the budget.
  • OpenAI o-series and GPT-5.5 — reasoning_effort parameter (low / medium / high). Reasoning tokens are billed but not returned to the developer. Different prompt style: instructions tend to be terser; over-prompting can interfere with the model's planning.
  • Gemini Thinking — thinking budget configured via generation config. Output behavior similar to Claude; specifics differ.

When to use native reasoning

  • Hard, multi-step tasks where ordinary outputs miss steps.
  • Tasks where you can afford the latency (reasoning is slower).
  • Tasks where you can afford the cost (reasoning tokens are billable).

When to skip

  • Low-latency real-time UX (reasoning adds seconds).
  • Trivial classification or formatting.
  • Tight token budgets.

Code

Claude Extended Thinking·python
client.messages.create(
    model="claude-opus-4-7",
    max_tokens=4096,
    thinking={"type": "enabled", "budget_tokens": 10_000},
    messages=[{"role": "user", "content": problem}]
)
OpenAI reasoning·python
client.responses.create(
    model="gpt-5.5",
    reasoning={"effort": "high"},
    input=[{"role": "user", "content": problem}]
)

External links

Exercise

Run the same hard task on Claude (extended thinking on/off) and OpenAI (reasoning_effort low/high). Compare cost, latency, and accuracy. Decide which combination wins for your use case.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.