AIAI EngineerMay 9, 2026· 8:12

Give Your Chat Agent a Voice — Luke Harries, Head of Growth, ElevenLabs

Luke Harries from ElevenLabs argues that the next upgrade for chat agents is a voice layer, not smarter prompts or RAG, and introduces the company's Voice Engine to wrap existing agents via a few lines of code. He demonstrates how text-in, text-out chat agents can be converted to voice agents using a single prompt, leveraging ElevenLabs' advanced turn-taking, emotion-aware interruption detection, and Scribe for speech-to-text. The Voice Engine provides server and client SDKs, plus Shadcn-based UI components, enabling omni-channel deployment like phone calls and Zoom. Harries also addresses tool calling, noting that the wrapper proxies calls to existing agent logic without rebuilding. He predicts that chat agents will either adopt voice or become obsolete.

Transcript

Intro0:00

Luke Harries0:15

And so really excited to talk to you about giving your chat agent a voice. And 2025 was the year of the chat agents, and I think you either like died a SaaS or you became AI-first by adding a chat agent to your app.

And so lots of you probably saw this tweet which went viral where it was a linear post hoc SEO where they all went and added their home screen is now the chat interface. And I actually really agree with this.

It's like that's the default way that you want to now be interacting with AI. You can use the tool calling, you can use the RAG. It's just very declarative. It's a great quick start. You even have the government doing the same.

Why Voice?0:55

Luke Harries0:55

This is the GOV.UK approach into chat agents. Chat's cool, but it doesn't feel like you're building the future there. And I really think voice is this natural medium. It's way quicker. It's way more interactive. It's also much more accessible.

So lots of people who struggle with keyboards or dyslexia, voice is a much more natural medium. And it's also omni-channel. As soon as you add voice, you unlock all these different type of interaction paradigms. So let's say you were post hoc.

Well, now your agent can actually join a Zoom call and start like correcting you if you're saying wrong stats. Or if you're customer support, you can now add a phone line. And so what we really need to do is upgrade all these chat agents into voice agents.

And oh, there's a there's some transitions. And what we found when we're building with companies is we first started ElevenLabs. We were like, okay, let's just build the best text to speech models in the world. And then we kind of got pulled into this big solution of how do you now build these agents.

Agent Architecture1:41

Luke Harries2:00

And we're working, powering customers like Revolut's customer support. And all of them kind of end up looking like this where you have this voice engine where you do the text to speech, the turn-taking, the speech to text. You then have this agent orchestration where you combine your LLMs, your RAG, your different tool calling, your all your integrations.

Probably a bunch of us in this room have either built the same system or pitched the same slide. But what we found is when we were starting working with these customers, loads of them went, yes, we're starting from scratch.

That's great. Let's use this out of the box one. But for lots of them, they'd actually already built this. And they were like, well, hold on, I've already got my agent. I spent loads of time doing the evals, the transcriptions.

Why would I need to completely replace and rebuild with what I have? And so that's why we're I'm giving you an early preview of a new product which will be coming out in a couple of weeks where we've basically taken this voice engine bit and wrapped it up into its own first class primitive, which makes it really easy for you to add and wrap any existing agent.

Voice Engine2:43

Luke Harries3:04

And so this is voice engine. We combine the best models. So speech to text with Scribe, which is the most accurate model, as well as the text to speech models like V3. It's got this really advanced turn-taking, which is emotion context aware.

It can tell when you're pausing. It does the semantic VAD as well, as well as all the different thousands of different voices and languages. And really importantly for the folks in this room, we've really cared about what does the developer experience of this look like.

SDKs3:35

Luke Harries3:35

And what's really cool about this is you've spent a ton of time building these complex chat agents. But to actually add voice to that is then remarkably simple. And so this is what the server SDK looks like. We basically have this you create your client, you then create your voice engine, and then you add this little wrapper to your existing chat agent where you basically attach it.

And then each time there's a new session started, it will kick off this loop and just kind of proxy all the stuff to your to your existing chat agent. Additionally, with the server SDK, we also then have the client SDK.

And so this is like super simple. It's basically three lines you can then add and you have a widget in your site. One of the cool things you actually get for free as well is once you've started adding these client SDKs, you can then also add like Telephony and CSAS and all of this is like pretty much out the box once you've wrapped it.

UI Components4:36

Luke Harries4:36

And finally, we have a bunch of really beautiful, well-thought-out UI components all based on the Shadcn and Vercel style. So you can actually just point your coding agent and give it a go. What's cool is you can literally in about one prompt actually convert an existing chat agent to a voice agent.

So I'll give you a quick demo now. So this is like your generic chat support agent where we can go, hello, how are you? Perfect. It replies. So that works pretty well. And this is the code all running locally.

And when we release this, it will come with a skill which basically has all the best in class stuff. And then it's literally one prompt which will then go analyze your code base, work out your chat agent, how to actually deploy it, work out how to wrap it.

So it should be really cool and quick to do. I'll just show you some of the code that it ends up writing. So you can see here we've got the voice engine. You attach it with each new new session.

It then starts proxying it. So it should be really simple and easy to add to your existing agents.

We can let it work in the background.

Cool. So that's a that's an early glimpse of voice engine. I also think this is just like a really useful paradigm which more of the community should do where we start kind of moving to this higher abstraction bundles instead of just the pure text to speech, speech to text.

Summary5:56

Luke Harries6:11

So to summarize the two different things we now have for developers building these different voice engines or voice agents, you've either got voice engine, which is fantastic. You spend all your time building these excellent chat agents. You can just do this little wrapper with a nice SDK.

Or if you want to use a full agents platform for conversational, we've got that out of the box. It's very easy, very quick to prompt.

Ends with a

Predictions6:37

Luke Harries6:40

a prediction. I think these chat agents will either die chat agents or start adding voice. I'm excited to work with lots of people in the room. We're also looking for some design partners. So if you want to be some of the first people to do this, would love to chat.

But thanks so much.

Cool. Yeah.

Q&A7:02

Guest7:02

How do you handle tool calling?

Luke Harries7:05

Yeah, the cool thing about this is your chat agent actually normally does the majority of tool calling. So it's actually already built out on the back end here. And so you can have this wrapper without needing to deal with any of the issues of tool calling.

We also at ElevenLabs have the concept of either client side tools and server side tools. So you can do some pretty cool stuff where you then like expose the tools on the very front end to like manipulate the DOM.

And we're going to add in a way where you can proxy some of these tool calls to the wrapped agent. But most folks will already have all the tool calling already handled with the chat agents.

Guest7:46

Thank you.

Luke Harries7:49

Cool.

Nice. Thanks so much.

Guest7:53

Thank you.