Skip to content

Extended Thinking: Deep Reasoning Mode

Open the model's hidden thinking buffer on complex tasks: what extended thinking is, when to enable, and the cost.

Şükrü Yusuf KAYA
10 min read
Intermediate
Extended thinking: cevap öncesi gizli düşünce

Extended Thinking

Belirli Claude sürümlerinde model, cevap üretmeden önce gizli bir scratch pad kullanır. Bu mod açıldığında latency artar, output token sayısı 2-3 katına çıkar; karşılığında zor matematik / mantık / multi-step kod problemlerinde isabet sıçrar.
Cevap öncesi gizli düşünce alanı şeması
Extended thinking — cevap öncesi gizli düşünce.
python
# Extended thinking aktif et (model + parametre destekliyse)
resp = client.messages.create(
model="claude-opus-4-6",
max_tokens=4096,
thinking={"type":"enabled","budget_tokens": 4096},
messages=[{"role":"user","content":"Karmaşık problem..."}],
)
thinking parametresi — sürüm dokümantasyonundan onaylı yazımı kontrol et.
Boşluk doldur · text
Extended thinking modunda model cevap öncesi _____ scratch pad kullanır. Latency ve output token _____. Basit görevlerde maliyet sebebiyle _____ tutulur.

Frequently Asked Questions

The API returns a 'thinking' block; default UIs hide it. Showing raw thinking to end users is usually discouraged.

Yorumlar & Soru-Cevap

(0)
Yorum yazmak için giriş yap.
Yorumlar yükleniyor...

Related Content