llama-index tools tavily_research integration
Project description
Tavily Research Tool
Tavily is a robust research API tailored specifically for LLM Agents. It seamlessly integrates with diverse data sources to ensure a superior, relevant research experience.
To begin, you need to obtain an API key on the Tavily's developer dashboard.
Why Choose Tavily Research API?
- Purpose-Built: Tailored just for LLM Agents, we ensure our features and results resonate with your unique needs. We take care of all the burden in searching, scraping, filtering and extracting information from online sources. All in a single API call!
- Versatility: Beyond just fetching results, Tavily Research API offers precision. With customizable search depths, domain management, and parsing html content controls, you're in the driver's seat.
- Performance: Committed to rapidity and efficiency, our API guarantees real-time outcomes without sidelining accuracy. Please note that we're just getting started, so performance may vary and improve over time.
- Integration-friendly: We appreciate the essence of adaptability. That's why integrating our API with your existing setup is a breeze. You can choose our Python library or a simple API call or any of our supported partners such as Langchain and LLamaIndex.
- Transparent & Informative: Our detailed documentation ensures you're never left in the dark. From setup basics to nuanced features, we've got you covered.
Usage
This tool has a more extensive example usage documented in a Jupyter notebook here
Here's an example usage of the TavilyToolSpec.
from llama_index.tools.tavily_research import TavilyToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
tavily_tool = TavilyToolSpec(
api_key="your-key",
)
agent = FunctionAgent(
tools=tavily_tool.to_tool_list(),
llm=OpenAI(model="gpt-4o"),
)
await agent.run("What happened in the latest Burning Man festival?")
Available Functions
search: Search for relevant dynamic data based on a query. Returns a list of Document objects with urls and their relevant content.
extract: Extract raw content from specific URLs using Tavily Extract API. Returns a list of Document objects containing the extracted content and metadata.
Extract Function Example
from llama_index.tools.tavily_research import TavilyToolSpec
tavily_tool = TavilyToolSpec(api_key="your-key")
# Extract content from specific URLs
documents = tavily_tool.extract(
urls=["https://example.com/article1", "https://example.com/article2"],
include_images=True,
include_favicon=True,
extract_depth="advanced", # "basic" or "advanced"
format="markdown", # "markdown" or "text"
)
for doc in documents:
print(f"URL: {doc.extra_info['url']}")
print(f"Content: {doc.text[:200]}...")
This loader is designed to be used as a way to load data as a Tool in an Agent.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_tools_tavily_research-0.5.0.tar.gz.
File metadata
- Download URL: llama_index_tools_tavily_research-0.5.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c93a2dace223c0941b562727aea29d0d5559d9b68c36baf8f238c176935c0414
|
|
| MD5 |
044900e105e3db8db55576ef3aded254
|
|
| BLAKE2b-256 |
169295226a1b87277e02e74eb4de3d8ea22f5932356dce45aae71b8189cf70bb
|
File details
Details for the file llama_index_tools_tavily_research-0.5.0-py3-none-any.whl.
File metadata
- Download URL: llama_index_tools_tavily_research-0.5.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c835d7abed602c843fa3aac74af0e06b24056bc200abdfd2dcd1b2ee1339e34
|
|
| MD5 |
600c2cdfee94a3899dd0b59d61e1fc42
|
|
| BLAKE2b-256 |
d64e3d1c49448784f4bdccc599ec0eda0ff2b5b93532ff79bf300f100483183f
|