We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e427162 commit d95ff36Copy full SHA for d95ff36
tools/reasoning-tools.mdx
@@ -19,13 +19,13 @@ Here's an example of how to use the `ReasoningTools` toolkit:
19
```python
20
from agno.agent import Agent
21
from agno.models.anthropic import Claude
22
-from agno.tools.thinking import ThinkingTools
+from agno.tools.reasoning import ReasoningTools
23
from agno.tools.yfinance import YFinanceTools
24
25
thinking_agent = Agent(
26
model=Claude(id="claude-3-7-sonnet-latest"),
27
tools=[
28
- ThinkingTools(add_instructions=True),
+ ReasoningTools(add_instructions=True),
29
YFinanceTools(
30
stock_price=True,
31
analyst_recommendations=True,
0 commit comments