Async Basic
Run a gpt-4o agent asynchronously through the OpenAI Responses API with aprint_response.
Code
import asyncio
from agno.agent import Agent, RunOutput # noqa
from agno.models.openai import OpenAIResponses
agent = Agent(model=OpenAIResponses(id="gpt-4o"), markdown=True)
# Get the response in a variable
# run: RunOutput = asyncio.run(agent.arun("Share a 2 sentence horror story"))
# print(run.content)
# Print the response in the terminal
asyncio.run(agent.aprint_response("Share a 2 sentence horror story"))
Usage
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateSet your API key
export OPENAI_API_KEY=xxxInstall dependencies
uv pip install -U openai agnoRun Agent
python async_basic.py