from agno.agent import Agent, RunResponse # noqa
from agno.models.openai import OpenAIChat
from agno.utils.audio import write_audio_to_file
# 为代理提供音频文件和音频配置,并将结果作为文本和音频获取
agent = Agent(
model=OpenAIChat(
id="gpt-4o-audio-preview",
modalities=["text", "audio"],
audio={"voice": "alloy", "format": "wav"},
),
markdown=True,
)
response: RunResponse = agent.run("讲一个5秒钟的恐怖故事")
# 将响应音频保存到文件
if response.response_audio is not None:
write_audio_to_file(
audio=agent.run_response.response_audio.content, filename="tmp/scary_story.wav"
)
创建虚拟环境
打开 Terminal
并创建一个 python 虚拟环境。
python3 -m venv .venv
source .venv/bin/activate
设置您的 API 密钥
export OPENAI_API_KEY=xxx
安装库
pip install -U openai agno
运行代理
python cookbook/models/openai/chat/audio_output_agent.py