from crewai_tools import DallETool, VisionTool, CodeInterpreterTool# Create AI toolsimage_generator = DallETool()vision_processor = VisionTool()code_executor = CodeInterpreterTool()# Add to your agentagent = Agent( role="AI Specialist", tools=[image_generator, vision_processor, code_executor], goal="Create and analyze content using AI capabilities")