Agno + Nebius Token Factory docs
Prerequisites
- Create an API key to authorize requests to Nebius Token Factory.
-
Save the API key into a
NEBIUS_API_KEYenvironment variable: -
Install the
agnopackage:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Using Nebius Token Factory with Agno Agent Framework
NEBIUS_API_KEY environment variable:
export NEBIUS_API_KEY="<API_key>"
agno package:
pip install agno
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.")
Was this page helpful?