import requestsfrom agno.agent import Agent, RunResponse # noqafrom agno.media import Audiofrom agno.models.openai import OpenAIChat# Fetch the audio file and convert it to a base64 encoded stringurl = "https://openaiassets.blob.core.windows.net/$web/API/docs/audio/alloy.wav"response = requests.get(url)response.raise_for_status()wav_data = response.content# Provide the agent with the audio file and get result as textagent = Agent( model=OpenAIChat(id="gpt-4o-audio-preview", modalities=["text"]), markdown=True,)agent.print_response( "What is in this audio?", audio=[Audio(content=wav_data, format="wav")])