Skip to main content
"""
Bravesearch Tools
=============================

Demonstrates bravesearch tools.
"""

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

# 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