from agno.agent import Agentfrom agno.models.openai import OpenAIChatfrom agno.tools.models_labs import ModelsLabToolsvideo_agent = Agent( model=OpenAIChat(id="gpt-5-mini"), tools=[ModelsLabTools()], description="You are an AI agent that can generate videos using the ModelsLabs API.", instructions=[ "When the user asks you to create a video, use the `generate_media` tool to create the video.", "The video will be displayed in the UI automatically below your response, so you don't need to show the video URL in your response.", "Politely and courteously let the user know that the video has been generated and will be displayed below as soon as its ready.", ], markdown=True,)video_agent.print_response("Generate a video of a cat playing with a ball")# print(video_agent.run_response.videos)