Skip to main content
Web tools let any agent search the internet or read any webpage, with automatic provider fallback so it works even without an API key.
The user asks for current information; the agent searches or fetches pages with automatic provider fallback.

Quick Start

1

Level 1 — Bool (simplest)

Add web=True and the agent automatically searches the internet when it needs current information.
2

Level 2 — String (pick a provider)

Pass a provider name to route searches through a specific engine.
3

Level 3 — Config class (full control)

Use WebConfig to combine search, fetch, provider, and result limits.
4

Alternative — Web tools directly

Use search_web and web_crawl as standalone tools inside any agent.

How It Works

The agent decides when to search or fetch based on your query. Results flow back as context for the final answer.

Configuration Options

WebConfig API Reference

Full API reference for WebConfig — search, fetch, providers, max_results

WebConfig Fields

Search Provider Priority (auto-fallback)


Common Patterns

Research Agent with Sources

Search the web and return cited sources alongside the answer.

Crawl and Summarize a URL

Fetch a specific webpage and summarize it.

Multi-Agent Research Pipeline

One agent searches, another writes the report.

Best Practices

DuckDuckGo requires no API key and no package beyond ddgs. It’s the best choice for local development, prototypes, and open-source projects where you can’t bundle API keys.
Tavily returns higher-quality snippets and supports full-page extraction. Set TAVILY_API_KEY in your environment and the agent will prefer it automatically over free providers.
Each search result adds tokens to the agent’s context. Keep max_results=5 (the default) for most queries. Only increase it when the task genuinely requires broad coverage, such as academic literature surveys.
search=True finds the best URLs; fetch=True reads the full page content. Use both together when a snippet is not enough — for example, reading full API documentation or news articles.

Search Providers

Choose DuckDuckGo, Tavily, or Serper for web search

Deep Research

Multi-step research agents that synthesize information from many sources