serply_tools.py
"""
Serply Tools
=============================
Demonstrates Serply tools for Google web, Google News, and Google Scholar search.
Requires: SERPLY_API_KEY environment variable.
Get your key at https://serply.io
"""
from agno.agent import Agent
from agno.tools.serply import SerplyTools
# ---------------------------------------------------------------------------
# Create Agents
# ---------------------------------------------------------------------------
# Example 1: Google web search (default)
agent = Agent(
tools=[SerplyTools()],
description="You are a web search agent that finds accurate, up-to-date information.",
instructions=[
"Use Serply to find the most relevant results for the user's query.",
"Summarize the top results clearly and cite the links.",
],
)
# Example 2: News search
news_agent = Agent(
tools=[SerplyTools(search_web=False, search_news=True)],
description="You are a news agent that finds the latest news on any topic.",
instructions=[
"Search Google News for recent articles on the given topic.",
"Present the top headlines with their sources and publish dates.",
],
)
# Example 3: Scholar search
scholar_agent = Agent(
tools=[SerplyTools(search_web=False, search_scholar=True)],
description="You are a research assistant that finds academic papers.",
instructions=[
"Search Google Scholar for papers that match the user's request.",
"For each paper include the authors, citation count, and a link to the PDF when available.",
],
)
# ---------------------------------------------------------------------------
# Run Agents
# ---------------------------------------------------------------------------
if __name__ == "__main__":
agent.print_response(
"What are the latest developments in AI agents?",
markdown=True,
stream=True,
)
scholar_agent.print_response(
"Find 3 recent papers on retrieval augmented generation.",
markdown=True,
stream=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 openai requests
3
Export your API keys
export OPENAI_API_KEY="your_openai_api_key_here"
export SERPLY_API_KEY="your_serply_api_key_here"
$Env:OPENAI_API_KEY="your_openai_api_key_here"
$Env:SERPLY_API_KEY="your_serply_api_key_here"
4
Run the example
Save the code above as
serply_tools.py, then run:python serply_tools.py