Python wrapper for the Tavily API
Project description
Tavily Python Wrapper
The Tavily Python wrapper allows for easy interaction with the Tavily API, offering the full range of our search functionality directly from your Python programs. Easily integrate smart search capabilities into your applications, harnessing Tavily's powerful search features.
Installing
pip install tavily-python
Usage
Below are some code snippets that show you how to interact with our API. The different steps and components of this code are explained in more detail in the API Methods section further down.
Getting and printing the full Search API response
from tavily import TavilyClient
# Step 1. Instantiating your TavilyClient
tavily_client = TavilyClient(api_key="tvly-YOUR_API_KEY")
# Step 2. Executing a simple search query
response = tavily_client.search("Who is Leo Messi?")
# Step 3. That's it! You've done a Tavily Search!
print(response)
This is equivalent to directly querying our REST API.
Generating context for a RAG Application
from tavily import TavilyClient
# Step 1. Instantiating your TavilyClient
tavily_client = TavilyClient(api_key="tvly-YOUR_API_KEY")
# Step 2. Executing a context search query
context = tavily_client.get_search_context(query="What happened during the Burning Man floods?")
# Step 3. That's it! You now have a context string that you can feed directly into your RAG Application
print(context)
This is how you can generate precise and fact-based context for your RAG application in one line of code.
Getting a quick answer to a question
from tavily import TavilyClient
# Step 1. Instantiating your TavilyClient
tavily_client = TavilyClient(api_key="tvly-YOUR_API_KEY")
# Step 2. Executing a Q&A search query
answer = tavily_client.qna_search(query="Who is Leo Messi?")
# Step 3. That's it! Your question has been answered!
print(answer)
This is how you get accurate and concise answers to questions, in one line of code. Perfect for usage by LLMs!
API Methods
Client
NEW! We have released a Beta of our asynchronous Tavily client. It is available in version
0.3.4
of our Python package. The asynchronous client's interface is identical to the synchronous client's, the only difference being that all methods are asynchronous. Try it now with theAsyncTavilyClient
class!
The TavilyClient
class is the entry point to interacting with the Tavily API. Kickstart your journey by instantiating it with your API key. If you want to use Tavily asynchronously, you will need to instantiate an AsyncTavilyClient
instead.
Once you do so, you're ready to search the Web in one line of code! All you need is to pass a str
as a query
to one of our methods (detailed below) and you'll start searching!
Methods
-
search
(query, **kwargs)- Performs a Tavily Search query and returns the response as a well-structured
dict
. - Additional parameters can be provided as keyword arguments (detailed below). The keyword arguments supported by this method are:
search_depth
,topic
,days
,max_results
,include_domains
,exclude_domains
,include_answer
,include_raw_content
,include_images
. - Returns a
dict
with all related response fields. If you decide to use the asynchronous client, returns acoroutine
resolving to thatdict
. The details of the exact response format are given in the Search Responses section further down.
- Performs a Tavily Search query and returns the response as a well-structured
-
get_search_context
(query, **kwargs)- Performs a Tavily Search query and returns a
str
of content and sources within the provided token limit. It's useful for getting only related content from retrieved websites without having to deal with context extraction and token management. - The core parameter for this function is
max_tokens
, anint
. It defaults to4000
. It is provided as a keyword argument. - Additional parameters can be provided as keyword arguments (detailed below). The keyword arguments supported by this method are:
search_depth
,topic
,days
,max_results
,include_domains
,exclude_domains
. - Returns a
str
containing the content and sources of the results. If you decide to use the asynchronous client, returns acoroutine
resolving to thatstr
.
- Performs a Tavily Search query and returns a
-
qna_search
(query, **kwargs)- Performs a search and returns a string containing an answer to the original query. This is optimal to be used as a tool for AI agents.
- Additional parameters can be provided as keyword arguments (detailed below). The keyword arguments supported by this method are:
search_depth
(defaults to"advanced"
),topic
,days
,max_results
,include_domains
,exclude_domains
. - Returns a
str
containing a short answer to the search query. If you decide to use the asynchronous client, returns acoroutine
resolving to thatstr
.
Keyword Arguments (optional)
-
search_depth
: str - The depth of the search. It can be"basic"
or"advanced"
. Default is"basic"
unless specified otherwise in a given method. -
topic
: str - The category of the search. This will determine which of our agents will be used for the search. Currently, only"general"
and"news"
are supported. Default is"general"
. -
days
: int (optional) - The number of days back from the current date to include in the search results. This specifies the time frame of data to be retrieved. Please note that this feature is only available when using the"news"
searchtopic
. Default is3
. -
max_results
: int - The maximum number of search results to return. Default is5
. -
include_images
: bool - Include a list of query-related images in the response. Default isFalse
. -
include_answer
: bool - Include a short answer to original query. Default isFalse
. -
include_raw_content
: bool - Include the cleaned and parsed HTML content of each search result. Default isFalse
. -
include_domains
: list[str] - A list of domains to specifically include in the search results. Default isNone
, which includes all domains. -
exclude_domains
: list[str] - A list of domains to specifically exclude from the search results. Default isNone
, which doesn't exclude any domains.
Search Responses
-
answer
: str- The answer to your search query. This will beNone
unlessinclude_answer
is set toTrue
. -
query
: str - Your search query. -
response_time
: float - Your search result response time. -
images
: list[str] - A list of query-related image URLs. -
results
: list - A list of sorted search results ranked by relevancy. Each result is in the following format:title
: str - The title of the search result URL.url
: str - The URL of the search result.content
: str - The most query related content from the scraped URL. We use proprietary AI and algorithms to extract only the most relevant content from each URL, to optimize for context quality and size.raw_content
: str - The parsed and cleaned HTML of the site. For now includes parsed text only. Please note that this will beNone
unlessinclude_raw_content
is set toTrue
.score
: float - The relevance score of the search result.published_date
: str (optional) - The publication date of the source. This is only available if you are using"news"
as your searchtopic
.
When you send a search query, the response dict
you receive will be in the following format:
response = {
"query" = "The query provided in the request",
"answer" = "A short answer to the query", # This will be None if include_answer is set to False in the request
"follow_up_questions": None, # This feature is still in development
"images" = [
"Image 1 URL",
"Image 2 URL",
"Image 3 URL",
"Image 4 URL",
"Image 5 URL"
], # This will be an empty list if include_images is not set to True
"results" = [
{
"title": "Source 1 Title",
"url": "Source 1 URL",
"content": "Source 1 Content",
"score": 0.99 # This is the "relevancy" score of the source. It ranges from 0 to 1.
},
{
"title": "Source 2 Title",
"url": "Source 2 URL",
"content": "Source 2 Content",
"score": 0.97
},
] # This list will have max_results elements
}
Error Handling
The Tavily Python SDK includes comprehensive error handling to ensure smooth interaction with the API. Below are the specific exceptions that might be raised during usage:
-
Missing API Key: If no API key is provided when initializing the
TavilyClient
, atavily.MissingAPIKeyError
will be raised. Ensure you pass a valid API key to theTavilyClient
during instantiation.from tavily import TavilyClient, MissingAPIKeyError try: tavily_client = TavilyClient(api_key="") except MissingAPIKeyError: print("API key is missing. Please provide a valid API key.")
-
Invalid API Key: If the API key provided is invalid, a
tavily.InvalidAPIKeyError
will be raised when sending a search query. Double-check that your API key is correct and active.from tavily import TavilyClient, InvalidAPIKeyError tavily_client = TavilyClient(api_key="invalid-api-key") try: response = tavily_client.search("Who is Leo Messi?") except InvalidAPIKeyError: print("Invalid API key provided. Please check your API key.")
-
Usage Limit Exceeded: If the API key provided is valid but the request fails due to exceeding the rate limit, surpassing the plan's monthly limit, or hitting the key's pre-set monthly limit, a
tavily.UsageLimitExceededError
will be raised. Consider upgrading your plan or checking your usage limits.from tavily import TavilyClient, UsageLimitExceededError tavily_client = TavilyClient(api_key="valid-api-key") try: response = tavily_client.search("Who is Leo Messi?") except UsageLimitExceededError: print("Usage limit exceeded. Please check your plan's usage limits or consider upgrading.")
These errors ensure that you are aware of the specific issues related to your API key usage, allowing you to take appropriate actions to resolve them.
License
This project is licensed under the terms of the MIT license.
Contact
If you are encountering issues while using Tavily, please email us at support@tavily.com. We'll be happy to help you.
If you want to stay updated on the latest Tavily news and releases, head to our Developer Community to learn more!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for tavily_python-0.5.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e874f6a04a56cdda80a505fe0b4f5d61d25372bd52a83e6773926fb297dcaa29 |
|
MD5 | 48257cb374c6cf9ec7af43bc332a7d3a |
|
BLAKE2b-256 | 909905776f7150a5b3f8d853377144a3a634131964c0fce38307537674a9a674 |