Run enterprise grade agent systems in your cloud with the AgentOS. Join the waitlist.
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.duckduckgo import DuckDuckGoTools
agent = Agent(
model=OpenAIChat(id="o3-mini"),
tools=[
DuckDuckGoTools(
search=True,
news=True,
)
],
instructions="Use tables to display data.",
show_tool_calls=True,
markdown=True,
)
agent.print_response("Write a report comparing renewable energy trends to traditional energy sources", stream=True)
Create a virtual environment
Terminal
and create a python virtual environment.python3 -m venv .venv
source .venv/bin/activate
Set your API key
export OPENAI_API_KEY=xxx
Install libraries
pip install -U openai agno
Run Agent
python cookbook/reasoning/models/openai/o3_mini_with_tools.py
Was this page helpful?