AI / Claude Models Basics Interview Questions
What is extended thinking and how does it differ from adaptive thinking in Claude?
Both features enable Claude to reason more carefully before answering, but they work differently and are available on different models.
| Feature | Extended Thinking | Adaptive Thinking |
|---|---|---|
| What it does | Claude produces explicit | Claude internally allocates more reasoning compute when a task requires it — no visible thinking blocks |
| Availability | Claude Haiku 4.5 only | Claude Opus 4.8, Sonnet 5, and Claude Fable 5 (always-on for Fable 5) |
| User control | Opt-in — you enable it with a parameter | Automatic on supported models; Fable 5 always uses it |
| Use case | When you want to see and verify the model's reasoning chain | General accuracy improvement, especially for complex tasks |
| Output impact | Adds thinking tokens to the response (billed separately) | No additional visible output |
# Enabling extended thinking on Claude Haiku 4.5
message = client.messages.create(
model="claude-haiku-4-5-20251001",
max_tokens=16000,
thinking={
"type": "enabled",
"budget_tokens": 10000 # max tokens for thinking
},
messages=[{"role": "user", "content": "Solve: if 3x + 7 = 22, what is x?"}]
)
# Response includes a "thinking" content block followed by the answerInterleaved thinking (thinking between tool calls) is automatic on models with adaptive thinking and requires the interleaved-thinking-2025-05-14 beta header on earlier models like Opus 4.5 and Sonnet 4.5.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
