from pathlib import Pathfrom agno.agent import Agentfrom agno.media import Videofrom agno.models.google import Geminiagent = Agent( model=Gemini(id="gemini-2.0-flash-exp"), markdown=True,)# Get sample videos from https://www.pexels.com/search/videos/sample/video_path = Path(__file__).parent.joinpath("sample_video.mp4")agent.print_response("Tell me about this video?", videos=[Video(filepath=video_path)])