from agno.agent import Agent
from agno.tools.desi_vocal import DesiVocalTools
agent = Agent(
instructions=[
"You are a text-to-speech assistant that converts text to natural Indian voices",
"Help users generate audio from text using various Indian accents and languages",
"Provide information about available voices and their characteristics",
"Create high-quality audio content for users",
],
tools=[DesiVocalTools()],
)
agent.print_response("Convert this text to speech: 'Namaste, welcome to our service'", stream=True)