跳转到主要内容
这些工具使您的智能体能够在网络上搜索、研究主题,并跨各种平台(包括搜索引擎、GitHub 和 YouTube)查找信息。

可用工具

常见用例

  • 市场调研:搜索行业趋势和竞争对手分析
  • 内容发现:查找相关文章、视频和资源
  • 代码研究:搜索代码仓库和文档以寻找解决方案
  • 潜在客户开发:研究公司和个人
  • 学术研究:查找学术文章和技术论文
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"
)