Eleven v3

eleven-v3
byElevenLabs|Created Jun 6, 2025
Speech

Eleven-v3 is ElevenLabs’ most expressive text-to-speech model, supporting over 70 languages, multi-speaker dialogue, and advanced audio tags such as [excited], [whispers], [laughs], and [sighs]. It provides unmatched realism and control, enabling dynamic, context-aware conversations with improved expressiveness and fine-grained audio control.

Code Example

Example code for using this model through our API with Python (OpenAI SDK) or cURL. Replace placeholders with your API key and model ID.

Basic request example. Ensure API key permissions. For more details, see our documentation.

from openai import OpenAI
from pathlib import Path

client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY")

speech_file_path = Path("speech.mp3")
resp = client.audio.speech.create(
    model="eleven-v3",
    voice="alloy",  # type: ignore
    input="Hello from NagaAI Text-to-Speech!"
)
resp.stream_to_file(speech_file_path)