Basic Agent

Run a Nebius Token Factory agent and print its response.

Code

import os

from agno.agent import Agent, RunOutput  # noqa
from agno.models.nebius import Nebius

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

# Get the response in a variable
# run: RunOutput = agent.run("write a two sentence horror story")
# print(run.content)

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

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