Tools
-
Tools
-
LangChain Agent
-
External Tools
-
DuckDuckGo Agent
-
arXiv Agent
-
Calculator Agent
-
CSV Agent
-
DuckDB Agent
-
Excel Agent
-
File Agent
-
JSON Agent
-
Newspaper Agent
-
Pandas Agent
-
Python Agent
-
Shell Agent
-
Spider Agent
-
Wikipedia Agent
-
XML Agent
-
YAML Agent
-
YFinance Agent
-
Low Code Custom Tools
-
Tools as Class
-
PraisonAI Tools Creator GPT
-
DuckDuckGo PraisonAI Integration
-
Langchain Tools
-
Wikipedia PraisonAI Integration
-
YouTube Search PraisonAI Integration
-
Tavily PraisonAI Integration
-
Reddit PraisonAI Integration
-
You.com PraisonAI Integration
-
Crawl4AI PraisonAI Integration
-
Mem0 and PraisonAI Integration
-
Composio PraisonAI Integration
-
Google Calendar Tools
Tools
Tavily PraisonAI Integration
Guide for integrating Tavily’s search API with PraisonAI agents for enhanced web search capabilities
Tavily PraisonAI Integration
Copy
from praisonai_tools import BaseTool
from langchain.utilities.tavily_search import TavilySearchAPIWrapper
class TavilyTool(BaseTool):
name: str = "TavilyTool"
description: str = "Search Tavily for relevant information based on a query."
def _run(self, query: str):
api_wrapper = TavilySearchAPIWrapper()
results = api_wrapper.results(query=query, max_results=5)
return results
On this page
Assistant
Responses are generated using AI and may contain mistakes.