Gemini Reasoning Tools

Gemini 2.5 Pro runs think and analyze steps with YFinanceTools for an NVDA vs TSLA report.

gemini_reasoning_tools.py
"""
Gemini Reasoning Tools
======================

Demonstrates this reasoning cookbook example.
"""

from agno.agent import Agent
from agno.models.google import Gemini
from agno.tools.reasoning import ReasoningTools
from agno.tools.yfinance import YFinanceTools


# ---------------------------------------------------------------------------
# Create Example
# ---------------------------------------------------------------------------
def run_example() -> None:
    reasoning_agent = Agent(
        model=Gemini(id="gemini-2.5-pro"),
        tools=[
            ReasoningTools(
                enable_think=True,
                enable_analyze=True,
            ),
            YFinanceTools(),
        ],
        instructions="Use tables where possible",
        stream_events=True,
        markdown=True,
    )
    reasoning_agent.print_response(
        "Write a report comparing NVDA to TSLA.", show_full_reasoning=True
    )


# ---------------------------------------------------------------------------
# Run Example
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    run_example()

Run the Example

Set up your virtual environment

uv venv --python 3.12
source .venv/bin/activate

Install dependencies

uv pip install -U agno google-genai yfinance

Export your Google API key

export GOOGLE_API_KEY="your_google_api_key_here"

Run the example

Save the code above as gemini_reasoning_tools.py, then run:

python gemini_reasoning_tools.py

Full source: cookbook/10_reasoning/tools/gemini_reasoning_tools.py