from agno.agent import Agent, RunResponse # noqafrom agno.models.openai import OpenAIChatfrom agno.utils.audio import write_audio_to_file# Provide the agent with the audio file and audio configuration and get result as text + audioagent = Agent( model=OpenAIChat( id="gpt-4o-audio-preview", modalities=["text", "audio"], audio={"voice": "alloy", "format": "wav"}, ), markdown=True,)response: RunResponse = agent.run("Tell me a 5 second scary story")# Save the response audio to a fileif response.response_audio is not None: write_audio_to_file( audio=agent.run_response.response_audio.content, filename="tmp/scary_story.wav" )