oxylabs_tools.py
"""
Oxylabs Tools
=============================
Demonstrates oxylabs tools.
"""
from agno.agent import Agent
from agno.tools.oxylabs import OxylabsTools
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
agent = Agent(
tools=[OxylabsTools()],
markdown=True,
)
# Example 1: Google Search
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
agent.print_response(
"Let's search for 'latest iPhone reviews' and provide a summary of the top 3 results. ",
)
# Example 2: Amazon Product Search
# agent.print_response(
# "Let's search for an Amazon product with ASIN 'B07FZ8S74R' (Echo Dot). ",
# )
# Example 3: Multi-Domain Amazon Search
# agent.print_response(
# "Use search_amazon_products to search for 'gaming keyboards' on both:\n"
# "1. Amazon US (domain='com')\n"
# "2. Amazon UK (domain='co.uk')\n"
# "Compare the top 3 results from each region including pricing and availability."
# )
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 openai oxylabs
3
Export environment variables
export OPENAI_API_KEY="your_openai_api_key_here"
export OXYLABS_PASSWORD="your_oxylabs_password_here"
$Env:OPENAI_API_KEY="your_openai_api_key_here"
$Env:OXYLABS_PASSWORD="your_oxylabs_password_here"
4
Run the example
Save the code above as
oxylabs_tools.py, then run:python oxylabs_tools.py