English
Interact with cloud services, storage systems, and cloud-based AI platforms
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" )
Was this page helpful?