> ## 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

> Using Nebius Token Factory with Agno Agent Framework

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](https://docs.agno.com/introduction)\
[Agno + Nebius Token Factory docs](https://docs.agno.com/concepts/models/nebius#nebius)

## Prerequisites

1. [Create an API key](https://tokenfactory.nebius.com/project/api-keys) to authorize requests to Nebius Token Factory.
2. Save the API key into a `NEBIUS_API_KEY` environment variable:

   ```shellscript theme={null}
   export NEBIUS_API_KEY="<API_key>"
   ```
3. Install the `agno` package:

   ```shellscript theme={null}
   pip install agno
   ```

## Quickstart

```python theme={null}
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](https://github.com/nebius/token-factory-cookbook/blob/main/agents/README.md#agno) in our cookbook.
