> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ElevenLabs

> Premium voices with ElevenLabs

High-quality, natural-sounding text-to-speech with ElevenLabs.

## Setup

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export ELEVEN_API_KEY=your-key
```

## Usage

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import AudioAgent

agent = AudioAgent(llm="elevenlabs/eleven_multilingual_v2")
agent.speech("Hello world!", output="hello.mp3")
```

## Models

| Model                               | Description  |
| ----------------------------------- | ------------ |
| `elevenlabs/eleven_multilingual_v2` | Multilingual |
| `elevenlabs/eleven_turbo_v2_5`      | Fast         |
| `elevenlabs/eleven_monolingual_v1`  | English      |

## Voice Selection

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
agent.speech(
    "Hello!",
    voice="Rachel",  # ElevenLabs voice name
    output="hello.mp3"
)
```

<Note>
  ElevenLabs offers 29+ languages and custom voice cloning.
</Note>
