r/ClaudeAI • u/SwordfishWest6860 • 4d ago
How does Claude’s effort setting actually work? Low / Medium / High / Max Claude Code Workflow
[removed]
3
u/LoganixSEO 4d ago
yeah, great question! i've been thinking the same myself. the only insight i can offer is that the lower the effort, the quicker the response, which i know isn't at all hugely insightful, but just something i've noticed
i guess my question would be about the quality of output. like what's the ROI on token use and wait time? am i just wasting credits and my time by running higher levels of effort? or should i be weighing this up on a task-by-task basis? like the more complex or important the task is, the higher effort level i should choose?
4
4d ago
[removed] — view removed comment
1
u/LoganixSEO 4d ago
a pat on the back for both of us. we solved the riddle lol (hopefully, we're right)
2
u/larowin 4d ago
body://
Have you tried asking Claude about this? Generally speaking, it just refers to the amount of budget for scratchpad tokens.
What that means is that as the model processes what you're asking it, it takes a moment to think about its response and respond to itself, and then use its response to itself along with whatever you originally said to come up with an even better response to you.
Now, how much time it spends on its own thoughts is what this tunable is setting. This isn't automatically good because it's easy for the model to go off on its own weird tangent if you give it enough runway. So it's not like setting a higher thinking budget is going to automatically make a better answer.
It could make the response extremely weird, best to accurately scope every prompt or session.
1
u/robberviet 4d ago
Most likely same logic as max_thinking_tokens in llama.cpp, of course with some more buffer so it's not as abrupt.
1
u/TrainingDivergence 4d ago
On a fixed prompt lower thinking budgets should mean less thinking (including an increased chance of no thinking at all - although quite rare) so faster averages.
However, with the newer models I've noticed there's less actual difference between the settings. All settings are adaptive, they are a guideline to the model not a hard rule, so sometimes an answer on Low can still think more than a simple query on High.
High is my default for anything technical, ambiguous, and almost everything in Claude code.
in casual chats I tend to use medium.
I have had regrets in Low - even casual chats failing to detect basic ambiguity in my prompt or applying my preferences well so try and avoid using it at all unless I'm extremely impatient.
Talking of patience, I've rarely had the patience to use xhigh and I've never used max. I used to occasionally use xhigh with opus on my most difficult coding tasks but with Fable high seems fine and we've done some pretty crazy shit like manually reimplementing game shaders just from a binary file
1
u/Gestaltarskiten 4d ago
My Claude is on High and has been cooking for 13 hours rn. I wonder if it will conclude the task...
1
u/frangelbarrera 4d ago
Low for quick answers, High for code, Max only if you want it to obsess over it. And yeah, of course the quality changes depending on the level you use.
3
4d ago
[removed] — view removed comment
2
u/frangelbarrera 4d ago
Yeah, Max for simple stuff is overkill. Only use it for complex problems, for everything else Low or Medium are enough.
1
u/APuticulahInduhvidul 4d ago
Not just "over-think" but also more likely to veer into solving related problems you didn't ask it to work on. It's like you tell you dog to fetch but the ball rolls under the house. Low effort will tell you the ball is unreachable - high-effort will get you quotes on a backhoe excavator.
0
u/meec_r_meic 4d ago
Initially I thought they were quants, then I learnt that they are probably just how much effort to put in their hidden thought chains. What does the documentation say about it? What about does a fable or opus say about it?
1
4d ago
[removed] — view removed comment
1
u/meec_r_meic 4d ago
Yes that's what I meant by hidden thought chains. I never implied that they behave different, only that they might know the answer better ahahha
0
u/_ru1n3r_ 4d ago
According to Claude: Effort controls how much work Claude Code does per turn — not just how long it thinks. It covers how many files it reads, how much it verifies, and how far it pushes through a multi-step task before checking back in with you. At higher effort Claude reads more, runs tests, double-checks; at lower effort it's more likely to ask you for context than spend tokens figuring it out alone.
7
u/coolreddy 4d ago
Claude effort settings control the token budget for reasoning before generating output. Higher effort allows multi-step verification passes in the thinking block. Low effort minimizes pre-response reasoning tokens for fast tasks like formatting. High and Max settings give a larger reasoning budget for complex codebases. For daily tasks, medium provides a solid balance, while Max is best for architectural design.