跳转到主要内容
这些工具使您的代理能够与云服务进行交互、访问云存储,并利用基于云的 AI 平台进行可扩展的操作。

可用工具

常见用例

  • 文件存储:从云存储系统存储和检索文件
  • 数据备份:将重要数据备份到云存储
  • AI 服务:访问基于云的 AI 模型和服务
  • 知识检索:查询云端托管的知识库
  • 可扩展操作:利用云基础设施进行处理
from crewai_tools import S3ReaderTool, S3WriterTool, BedrockInvokeAgentTool

# Create cloud tools
s3_reader = S3ReaderTool()
s3_writer = S3WriterTool()
bedrock_agent = BedrockInvokeAgentTool()

# Add to your agent
agent = Agent(
    role="Cloud Operations Specialist",
    tools=[s3_reader, s3_writer, bedrock_agent],
    goal="Manage cloud resources and AI services"
)