from agno.agent import Agentfrom agno.tools.models.azure_openai import AzureOpenAIToolsagent = Agent( instructions=[ "You are an AI image generation assistant using Azure OpenAI", "Generate high-quality images based on user descriptions", "Provide detailed descriptions of the generated images", ], tools=[AzureOpenAITools()], markdown=True,)agent.print_response("Generate an image of a sunset over mountains")