from agno.agent import Agentfrom agno.tools.dalle import DalleTools# Create an Agent with the DALL-E toolagent = Agent(tools=[DalleTools()], name="DALL-E Image Generator", markdown=True)response = agent.run( "Generate an image of a dog and tell what color the dog is.", debug_mode=True,)if response.images: print("Agent Response", response.content) print(response.images[0].url)