Agentic Development ยท Reasoning Patterns
A prompting technique where the model is instructed (or trained) to write out its reasoning step by step before producing a final answer, which tends to improve accuracy on complex tasks.
Example: Instead of directly answering 'What's 17 ร 24?', the model writes: '17 ร 20 = 340, 17 ร 4 = 68, total = 408.'
In practice: Chain-of-thought is foundational to most agentic reasoning. The 'thought' portion of ReAct is essentially chain-of-thought applied in an action loop. Visible reasoning also makes agent behavior easier to debug.