from pathlib import Pathfrom agno.agent import Agentfrom agno.media import Audiofrom agno.models.google import Geminiagent = Agent( model=Gemini(id="gemini-2.0-flash-exp"), markdown=True,)# Please download a sample audio file to test this Agent and upload using:audio_path = Path(__file__).parent.joinpath("sample.mp3")agent.print_response( "Tell me about this audio", audio=[Audio(filepath=audio_path)], stream=True,)