Streaming Agent

Stream a Groq response through an Agno agent.

Set stream=True on print_response() to print the response as it arrives.

Code

from agno.agent import Agent
from agno.models.groq import Groq

agent = Agent(model=Groq(id="openai/gpt-oss-120b"), markdown=True)

# Print the response on the terminal
agent.print_response("Share a 2 sentence horror story", stream=True)

Usage

Set up your virtual environment

uv venv --python 3.12
source .venv/bin/activate

Set your API key

export GROQ_API_KEY=xxx

Install dependencies

uv pip install -U groq agno

Run Agent

Save the code above as basic.py, then run:

python basic.py