Skip to main content
"""
Reasoning Summary
=================

Demonstrates this reasoning cookbook example.
"""

from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.websearch import WebSearchTools


# ---------------------------------------------------------------------------
# Create Example
# ---------------------------------------------------------------------------
def run_example() -> None:
    # Setup the reasoning Agent
    agent = Agent(
        model=OpenAIResponses(
            id="o4-mini",
            reasoning_summary="auto",  # Requesting a reasoning summary
        ),
        tools=[WebSearchTools(enable_news=False)],
        instructions="Use tables to display the analysis",
        markdown=True,
    )

    agent.print_response(
        "Write a brief report comparing NVDA to TSLA",
        stream=True,
    )


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

Run the Example

# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/10_reasoning/models/openai

# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate

python reasoning_summary.py