from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.desi_vocal import DesiVocalTools
audio_agent = Agent(
model=OpenAIChat(id="gpt-4o"),
tools=[DesiVocalTools()],
description="You are an AI agent that can generate audio using the DesiVocal API.",
instructions=[
"When the user asks you to generate audio, use the `text_to_speech` tool to generate the audio.",
"You'll generate the appropriate prompt to send to the tool to generate audio.",
"You don't need to find the appropriate voice first, I already specified the voice to user.",
"Return the audio file name in your response. Don't convert it to markdown.",
"Generate the text prompt we send in hindi language",
],
markdown=True,
debug_mode=True,
show_tool_calls=True,
)
audio_agent.print_response(
"Generate a very small audio of history of french revolution"
)
创建虚拟环境
打开 Terminal
并创建一个 python 虚拟环境。
python3 -m venv .venv
source .venv/bin/activate
设置您的 API 密钥
export DESI_VOCAL_API_KEY=xxx
export OPENAI_API_KEY=xxx
安装库
pip install -U requests openai agno
运行 Agent
python cookbook/tools/desi_vocal_tools.py