한국어
웹 검색을 수행하고, 저장소를 찾으며, 인터넷 전반에 걸쳐 정보를 조사합니다
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" )
이 페이지가 도움이 되었나요?