# Livekit supports ElevenLabs TTS models, but why not Eleven v3

**URL:** https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810
**Category:** Agents
**Tags:** python, tts, elevenlabs, agent-development
**Created:** [April 8, 2026, 8:32am UTC](https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810 "2026-04-08T08:32:58Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Fahim\_Uddin](https://sea1.discourse-cdn.com/flex001/user_avatar/community.livekit.io/fahim_uddin/32/179_2.png) [@Fahim\_Uddin](https://community.livekit.io/u/Fahim_Uddin)
#### Post date: [April 8, 2026, 8:32am UTC](https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810/1 "2026-04-08T08:32:58Z")

</div>

If I look at [ElevenLabs TTS | LiveKit Documentation](https://docs.livekit.io/agents/models/tts/elevenlabs/#inference) I can see the list of elevenlabs TTS models, I do not see Eleven v3, as it is a really rich TTS model with multiple languages support: [Models | ElevenLabs Documentation](https://elevenlabs.io/docs/overview/models#eleven-v3)

Is there any reason to not support it through Livekit inference?  
First I though it can only be used with dialouge API, but in the doc it states:

`With Eleven v3 comes a new Text to Dialogue API, which allows you to generate natural, lifelike dialogue with high emotional range and contextual understanding across multiple languages. Eleven v3 can also be used with the Text to Speech API to generate natural, lifelike speech with high emotional range and contextual understanding across multiple languages.`

When I tried with:

```python
tts=inference.TTS(
            model="elevenlabs/eleven_v3", voice="Xb7hH8MSUJpSbSDYk0k2", language="bn"
),

```

I get this error:

`provider instance for session 4b1dc706-00d3-49ce-a197-749c9be56be0: TTS model not found in list"}, retrying in 2.0s`

It would be really helpful if the Livekit team can help me here. Thanks in Advance!

---

<div class="post-metadata">

### Author: ![darryncampbell](https://sea1.discourse-cdn.com/flex001/user_avatar/community.livekit.io/darryncampbell/32/20_2.png) [@darryncampbell](https://community.livekit.io/u/darryncampbell)
#### Post date: [April 8, 2026, 10:35am UTC](https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810/2 "2026-04-08T10:35:21Z")

</div>

Hi, I see internal discussions from a couple of days ago saying that the model will be added to Inference and the work is still ongoing.

I’m not sure what the latency will be, I see a lot of reports online that the model does not support WebSockets, so I assume model integration will rely on HTTP streaming.

There is a community-contributed [PR](https://github.com/livekit/agents/pull/4936) to add v3 support to the plugin, but at this point you are probably best to wait until it is added to Inference.

---

<div class="post-metadata">

### Author: ![Isaac\_Huntsman](https://sea1.discourse-cdn.com/flex001/user_avatar/community.livekit.io/isaac_huntsman/32/323_2.png) [@Isaac\_Huntsman](https://community.livekit.io/u/Isaac_Huntsman)
#### Post date: [April 8, 2026, 2:01pm UTC](https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810/3 "2026-04-08T14:01:50Z")

</div>

Isn’t latency for v3 ~10s for a few lines of dialogue? That’s from my experience

---

<div class="post-metadata">

### Author: ![Yusuf\_Eren](https://sea1.discourse-cdn.com/flex001/user_avatar/community.livekit.io/yusuf_eren/32/506_2.png) [@Yusuf\_Eren](https://community.livekit.io/u/Yusuf_Eren)
#### Post date: [April 8, 2026, 7:19pm UTC](https://community.livekit.io/t/livekit-supports-elevenlabs-tts-models-but-why-not-eleven-v3/810/4 "2026-04-08T19:19:40Z")

</div>

hey, I already created a pr for it: [feat(elevenlabs): add eleven\_v3 model support with HTTP streaming fallback by yusuf-eren · Pull Request #4936 · livekit/agents · GitHub](https://github.com/livekit/agents/pull/4936/changes)

related issue: [Proper support for ElevenLabs "eleven\_v3" in "livekit-plugins-elevenlabs" with ETA · Issue #4901 · livekit/agents · GitHub](https://github.com/livekit/agents/issues/4901)

Also you can just bypass it without waiting for LiveKit Agent new version: [Proper support for ElevenLabs "eleven\_v3" in "livekit-plugins-elevenlabs" with ETA · Issue #4901 · livekit/agents · GitHub](https://github.com/livekit/agents/issues/4901#issuecomment-4136259119)
