English
Perform web searches, find repositories, and research information across the internet
from crewai_tools import SerperDevTool, GitHubSearchTool, YoutubeVideoSearchTool, TavilySearchTool, TavilyExtractorTool # Create research tools web_search = SerperDevTool() code_search = GitHubSearchTool() video_research = YoutubeVideoSearchTool() tavily_search = TavilySearchTool() content_extractor = TavilyExtractorTool() # Add to your agent agent = Agent( role="Research Analyst", tools=[web_search, code_search, video_research, tavily_search, content_extractor], goal="Gather comprehensive information on any topic" )
Was this page helpful?