exa_tools.py
"""
Exa Tools
=============================
Demonstrates exa tools.
"""
from agno.agent import Agent
from agno.tools.exa import ExaTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
# Example 1: Enable all tools
agent_all = Agent(
tools=[
ExaTools(
all=True, # Enable all exa tools
show_results=True,
)
],
markdown=True,
)
# Example 2: Enable specific tools only
agent_specific = Agent(
tools=[
ExaTools(
enable_search=True,
enable_answer=True,
enable_get_contents=False,
enable_find_similar=False,
enable_research=False,
include_domains=["cnbc.com", "reuters.com", "bloomberg.com"],
show_results=True,
text=False,
)
],
markdown=True,
)
# Example 3: Default behavior (most functions enabled by default)
agent = Agent(
tools=[
ExaTools(
include_domains=["cnbc.com", "reuters.com", "bloomberg.com"],
show_results=True,
text=False,
)
],
markdown=True,
)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
agent.print_response("Search for AAPL news", markdown=True)
agent = Agent(
tools=[
ExaTools(
show_results=True,
)
],
markdown=True,
)
agent.print_response("Search for AAPL news", markdown=True)
agent.print_response(
"What is the paper at https://arxiv.org/pdf/2307.06435 about?", markdown=True
)
agent.print_response(
"Find me similar papers to https://arxiv.org/pdf/2307.06435 and provide a summary of what they contain",
markdown=True,
)
agent.print_response(
"What is the latest valuation of SpaceX?",
markdown=True,
)
Run the Example
1
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activate
uv venv --python 3.12
.venv\Scripts\activate
2
Install dependencies
uv pip install -U agno exa-py openai
3
Export your API keys
export EXA_API_KEY="your_exa_api_key_here"
export OPENAI_API_KEY="your_openai_api_key_here"
$Env:EXA_API_KEY="your_exa_api_key_here"
$Env:OPENAI_API_KEY="your_openai_api_key_here"
4
Run the example
Save the code above as
exa_tools.py, then run:python exa_tools.py