import requestsfrom agno.agent import Agentfrom agno.media import Videofrom agno.models.google import Geminiagent = Agent( model=Gemini(id="gemini-2.0-flash-exp"), markdown=True,)url = "https://videos.pexels.com/video-files/5752729/5752729-uhd_2560_1440_30fps.mp4"# Download the video file from the URL as bytesresponse = requests.get(url)video_content = response.contentagent.print_response( "Tell me about this video", videos=[Video(content=video_content)],)