Add the following code to your Python file
from agno.agent import Agent
from agno.models.google import Gemini
from agno.tools.reasoning import ReasoningTools
from agno.tools.hackernews import HackerNewsTools
reasoning_agent = Agent(
model=Gemini(id="gemini-2.5-pro-preview-03-25"),
tools=[
ReasoningTools(
think=True,
analyze=True,
add_instructions=True,
),
HackerNewsTools(),
],
instructions="Use tables where possible",
stream_events=True,
markdown=True,
debug_mode=True,
)
reasoning_agent.print_response(
"Write a report comparing NVDA to TSLA.", show_full_reasoning=True
)
Was this page helpful?