Skip to main content
Agno is an open-source framework (in Python) for building agentic systems - i.e., AI agents, multi-agent teams, workflows, memory/knowledge, tools, reasoning Agno docs
Agno + Nebius Token Factory docs

Prerequisites

  1. Create an API key to authorize requests to Nebius Token Factory.
  2. Save the API key into a NEBIUS_API_KEY environment variable:
    export NEBIUS_API_KEY="<API_key>"
    
  3. Install the agno package:
    pip install agno
    

Quickstart

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

agent = Agent(
     model=Nebius(
        id="meta-llama/Llama-3.3-70B-Instruct",
        api_key=os.getenv("NEBIUS_API_KEY")
    ),
    markdown=True
)

agent.print_response("Share a 2 sentence horror story.")

More Examples

View more examples in our cookbook.