Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tokenfactory.nebius.com/llms.txt

Use this file to discover all available pages before exploring further.

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.