The following agent can convert text to speech using Indian voices:
from agno.agent import Agentfrom agno.tools.desi_vocal import DesiVocalToolsagent = 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)