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

# Brave Search

> Use Brave Search tools with Agno Agents.

Retrieve relevant results from across the internet with Agno Agents and [Brave Search APIs](https://api-dashboard.search.brave.com/). Search from a large index of web pages with optional local and rich data enrichments.

```python theme={null}

from agno.agent import Agent
from agno.tools.bravesearch import BraveSearchTools

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


# Example 1: Enable specific Brave Search functions
agent = Agent(
    tools=[BraveSearchTools(enable_brave_search=True)],
    description="You are a news agent that helps users find the latest news.",
    instructions=[
        "Given a topic by the user, respond with 4 latest news items about that topic."
    ],
)

# Example 2: Enable all Brave Search functions
agent_all = Agent(
    tools=[BraveSearchTools(all=True)],
    description="You are a comprehensive search agent with full Brave Search capabilities.",
    instructions=[
        "Use Brave Search to find accurate, privacy-focused search results.",
        "Provide relevant and up-to-date information on any topic.",
    ],
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response("AI Agents", 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 bravesearch_tools.py
```

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