Code
cookbook/11_models/openai/responses/zdr_reasoning_agent.py
Copy
Ask AI
"""
An example of using OpenAI Responses with reasoning features and ZDR mode enabled.
Read more about ZDR mode here: https://openai.com/enterprise-privacy/.
"""
from agno.agent import Agent
from agno.db.in_memory import InMemoryDb
from agno.models.openai import OpenAIResponses
agent = Agent(
name="ZDR Compliant Agent",
session_id="zdr_demo_session",
model=OpenAIResponses(
id="o4-mini",
store=False,
reasoning_summary="auto", # Requesting a reasoning summary
),
instructions="You are a helpful AI assistant operating in Zero Data Retention mode for maximum privacy and compliance.",
db=InMemoryDb(),
add_history_to_context=True,
stream=True,
)
agent.print_response("What's the largest country in Europe by area?")
agent.print_response("What's the population of that country?")
agent.print_response("What's the population density per square kilometer?")
Usage
1
Set up your virtual environment
Copy
Ask AI
uv venv --python 3.12
source .venv/bin/activate
2
Set your API key
Copy
Ask AI
export OPENAI_API_KEY=xxx
3
Install dependencies
Copy
Ask AI
uv pip install -U openai agno
4
Run Agent
Copy
Ask AI
python cookbook/11_models/openai/responses/zdr_reasoning_agent.py