Reasoning Tools
A new class of research is emerging where giving models tools for structured thinking, like a scratchpad, greatly improves their reasoning capabilities.
For example, by giving a model a “think” tool, we can greatly improve its reasoning capabilities by providing a dedicated space for working through the problem. This is a simple, yet effective approach to add reasoning to non-reasoning models.
First published by Anthropic in this blog post, this technique has been practiced by many AI Engineers (including our own team) long before it was published.
v0: The Think Tool
The first version of the Think Tool was published by Anthropic in this blog post.
v1: The Reasoning Tools
While the v0 Think Tool is a great start, it is limited in that it only allows for a thinking space. The v1 Reasoning Tools take this one step further by allowing the Agent to analyze the results of their actions (i.e. tool calls), greatly improving the Agents’ ability to solve problems that require sequential tool calls.
ReasoningTools = think
+ analyze
Developer Resources
You can find more examples in the Reasoning Tools Cookbook.