Code
cookbook/11_models/openai/responses/reasoning_o3_mini.py
from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.hackernews import HackerNewsTools
agent = Agent(
model=OpenAIResponses(id="o3-mini"),
tools=[HackerNewsTools()],
markdown=True,
)
# Print the response in the terminal
agent.print_response("Write a report on the latest news on AI?", stream=True)
Was this page helpful?