Enable Agno agents to search the web through ability provider-agnostic engine for internet exploration. While specific toolkits like DuckDuckGoTools or TavilyTools target a single provider, WebTools is designed to handle multiple backends (Google, Bing, Brave, etc.) through a unified interface.
Copy
Ask AI
from agno.agent import Agentfrom agno.tools.webtools import WebTools# ---------------------------------------------------------------------------# Create Agent# ---------------------------------------------------------------------------agent = Agent(tools=[WebTools()])# ---------------------------------------------------------------------------# Run Agent# ---------------------------------------------------------------------------if __name__ == "__main__": agent.print_response("Tell me about https://tinyurl.com/57bmajz4")