Streaming Agent

Stream a Nebius agent's response to the terminal with stream=True.

Code

import os

from agno.agent import Agent
from agno.models.nebius import Nebius

agent = Agent(
    model=Nebius(id=os.environ["NEBIUS_MODEL_ID"]),
    markdown=True,
)

# Print the response in the terminal
agent.print_response("write a two sentence horror story", stream=True)

Usage

Set up your virtual environment

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

Export environment variables

Select an available text-generation model ID from the Nebius model-list API.

export NEBIUS_API_KEY="your_nebius_api_key"
export NEBIUS_MODEL_ID="your_current_text_model_id"

Install dependencies

uv pip install -U openai agno

Run Agent

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

python basic.py