> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-studio-tools-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Seltz

> Use Seltz tools in Agno agents.

Enable Agno agents with Seltz to get fast, high-quality web data. It delivers clean context for better reasoning with enterprise-grade security and reliable speed.

## Prerequisites

* Install dependencies: `pip install seltz agno openai python-dotenv`
* Set up environment variable SELTZ\_API\_KEY

```python theme={null}


from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.seltz import SeltzTools
from dotenv import load_dotenv

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------


load_dotenv()

agent = Agent(
    model=OpenAIResponses(id="gpt-5.2"),
    tools=[SeltzTools(show_results=True)],
    markdown=True,
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------

if __name__ == "__main__":
    agent.print_response("Search for current AI safety reports", markdown=True)
```

## Run the Example

```bash theme={null}
# Clone and setup repo
git clone https://github.com/agno-agi/agno.git
cd agno/cookbook/91_tools

# Create and activate virtual environment
./scripts/demo_setup.sh
source .venvs/demo/bin/activate

python seltz_tools.py
```

For details, see [Seltz cookbook](https://github.com/agno-agi/agno/blob/main/cookbook/91_tools/seltz_tools.py).
