# GandrTools adds Gandr text-to-speech to your agents

> The new GandrTools toolkit lets an agent turn text into speech through the Gandr TTS API, built for voice agents and covering 23 languages with six voices.

- Published: 2026-09-01
- Author: Sam Alghaithi
- Categories: Changelog
- Canonical: https://www.agno.com/articles/gandrtools-adds-gandr-text-to-speech-to-your-agents
- Markdown: https://www.agno.com/articles/gandrtools-adds-gandr-text-to-speech-to-your-agents.md

We added `GandrTools`, a toolkit that lets an agent turn text into speech through the Gandr TTS API. Hand it some text and it returns spoken audio.

```python
from agno.agent import Agent
from agno.tools.gandr import GandrTools

agent = Agent(tools=[GandrTools()])
agent.print_response("Read this back: order 4-2-7-1 ships on March 3rd.")
```

Gandr is built for voice agents, so it reads the things other engines trip over, like numbers, dates, order IDs, and addresses. One engine covers 23 languages with six voices, and audio streams back as it is generated. Set your `GANDR_API_KEY` and it is ready to use.

See [cookbook](https://github.com/agno-agi/agno/blob/main/cookbook/91_tools/gandr_tools.py) for more details.
