Tavily
haystack_integrations.components.fetchers.tavily.tavily_fetcher
TavilyFetcher
A component that uses the Tavily Extract API to fetch and extract content from URLs as Haystack Documents.
This component wraps the Tavily Extract API, which retrieves and parses web page content from one or more specified URLs. Unlike web search, it fetches content directly from the given URLs rather than discovering them via a query. PDF URLs are also supported for extraction.
Tavily is an AI-powered search and extraction API optimized for LLM applications. You need a Tavily API key from tavily.com.
Usage example
from haystack_integrations.components.fetchers.tavily import TavilyFetcher
from haystack.utils import Secret
fetcher = TavilyFetcher(
api_key=Secret.from_env_var("TAVILY_API_KEY"),
extract_depth="basic",
)
result = fetcher.run(urls=["https://haystack.deepset.ai"])
documents = result["documents"]
meta = result["meta"]
init
__init__(
api_key: Secret = Secret.from_env_var("TAVILY_API_KEY"),
*,
extract_depth: Literal["basic", "advanced"] = "basic",
include_images: bool = False,
extract_params: dict[str, Any] | None = None
) -> None
Initialize the TavilyFetcher component.
Parameters:
- api_key (
Secret) – API key for Tavily. Defaults to theTAVILY_API_KEYenvironment variable. - extract_depth (
Literal['basic', 'advanced']) – Extraction depth:"basic"(fast, lower cost) or"advanced"(more data including tables, higher latency and cost). Defaults to"basic". - include_images (
bool) – IfTrue, extracted image URLs are included in each Document's metadata under the"images"key. Defaults toFalse. - extract_params (
dict[str, Any] | None) – Additional parameters passed to the Tavily Extract API, such asformat,include_favicon,query, orchunks_per_source. See the Tavily Extract API reference for available options.
warm_up
Initialize the Tavily sync and async clients.
Called automatically on first use. Can be called explicitly to avoid cold-start latency.
run
run(
urls: list[str], extract_params: dict[str, Any] | None = None
) -> dict[str, Any]
Fetch and extract content from the given URLs using the Tavily Extract API.
Parameters:
- urls (
list[str]) – List of URLs to extract content from. Maximum 20 URLs per request. - extract_params (
dict[str, Any] | None) – Optional per-run override of extract parameters. If provided, fully replaces the init-timeextract_params.
Returns:
dict[str, Any]– A dictionary with:documents: List of Documents containing extracted page content. Each Document'smetaincludes"url"and, ifinclude_imagesis True,"images".meta: Request-level metadata containing"response_time","usage","request_id", and"failed_results"for URLs that could not be processed.
run_async
run_async(
urls: list[str], extract_params: dict[str, Any] | None = None
) -> dict[str, Any]
Asynchronously fetch and extract content from the given URLs using the Tavily Extract API.
Parameters:
- urls (
list[str]) – List of URLs to extract content from. Maximum 20 URLs per request. - extract_params (
dict[str, Any] | None) – Optional per-run override of extract parameters. If provided, fully replaces the init-timeextract_params.
Returns:
dict[str, Any]– A dictionary with:documents: List of Documents containing extracted page content. Each Document'smetaincludes"url"and, ifinclude_imagesis True,"images".meta: Request-level metadata containing"response_time","usage","request_id", and"failed_results"for URLs that could not be processed.
haystack_integrations.components.websearch.tavily.tavily_websearch
TavilyWebSearch
A component that uses Tavily to search the web and return results as Haystack Documents.
This component wraps the Tavily Search API, enabling web search queries that return structured documents with content and links.
Tavily is an AI-powered search API optimized for LLM applications. You need a Tavily API key from tavily.com.
Usage example
from haystack_integrations.components.websearch.tavily import TavilyWebSearch
from haystack.utils import Secret
websearch = TavilyWebSearch(
api_key=Secret.from_env_var("TAVILY_API_KEY"),
top_k=5,
)
result = websearch.run(query="What is Haystack by deepset?")
documents = result["documents"]
links = result["links"]
init
__init__(
api_key: Secret = Secret.from_env_var("TAVILY_API_KEY"),
top_k: int | None = 10,
search_params: dict[str, Any] | None = None,
) -> None
Initialize the TavilyWebSearch component.
Parameters:
- api_key (
Secret) – API key for Tavily. Defaults to theTAVILY_API_KEYenvironment variable. - top_k (
int | None) – Maximum number of results to return. - search_params (
dict[str, Any] | None) – Additional parameters passed to the Tavily search API. See the Tavily API reference for available options. Supported keys include:search_depth,include_answer,include_raw_content,include_domains,exclude_domains.
warm_up
Initialize the Tavily sync and async clients.
Called automatically on first use. Can be called explicitly to avoid cold-start latency.
run
Search the web using Tavily and return results as Documents.
Parameters:
- query (
str) – Search query string. - search_params (
dict[str, Any] | None) – Optional per-run override of search parameters. If provided, fully replaces the init-timesearch_params.
Returns:
dict[str, Any]– A dictionary with:documents: List of Documents containing search result content.links: List of URLs from the search results.
run_async
run_async(
query: str, search_params: dict[str, Any] | None = None
) -> dict[str, Any]
Asynchronously search the web using Tavily and return results as Documents.
Parameters:
- query (
str) – Search query string. - search_params (
dict[str, Any] | None) – Optional per-run override of search parameters. If provided, fully replaces the init-timesearch_params.
Returns:
dict[str, Any]– A dictionary with:documents: List of Documents containing search result content.links: List of URLs from the search results.
haystack_integrations.tools.tavily.websearch_tool
TavilyWebSearchTool
Bases: ComponentTool
A tool that searches the web with Tavily.
Wraps the TavilyWebSearch component and formats its results as a string that an LLM can cite.
The tool parameters are derived from the component's run method, so the LLM can pass a query and,
optionally, search_params overriding the ones set at initialization time.
Usage example
from haystack.components.agents import Agent
from haystack.components.generators.chat import OpenAIChatGenerator
from haystack.dataclasses import ChatMessage
from haystack_integrations.tools.tavily import TavilyWebSearchTool
web_search = TavilyWebSearchTool(top_k=5, search_params={"search_depth": "advanced"})
agent = Agent(chat_generator=OpenAIChatGenerator(model="gpt-5-mini"), tools=[web_search])
result = agent.run(messages=[ChatMessage.from_user("What is Haystack by deepset?")])
print(result["last_message"].text)
init
__init__(
*,
api_key: Secret | None = None,
top_k: int | None = None,
search_params: dict[str, Any] | None = None,
name: str = "web_search",
description: str = _DEFAULT_DESCRIPTION
) -> None
Initialize the TavilyWebSearchTool.
Parameters:
- api_key (
Secret | None) – API key for Tavily. If unset,TavilyWebSearchreads theTAVILY_API_KEYenvironment variable. - top_k (
int | None) – Maximum number of results to return. If unset, theTavilyWebSearchdefault applies. - search_params (
dict[str, Any] | None) – Additional parameters passed to the Tavily search API. See the Tavily API reference for available options. Supported keys include:search_depth,include_answer,include_raw_content,include_domains,exclude_domains. - name (
str) – Tool name exposed to the LLM. - description (
str) – Tool description exposed to the LLM.
to_dict
Serialize the tool to a dictionary.
Returns:
dict[str, Any]– Dictionary with serialized data.
from_dict
Deserialize the tool from a dictionary.
Parameters:
- data (
dict[str, Any]) – Dictionary to deserialize from.
Returns:
TavilyWebSearchTool– Deserialized tool.