
Build exceptional voice agents
We make it easy to add ultra low-latency voice to your AI agent, while retaining full control over your agent backend.
Configure your voice experience
Powerful audio pipelines give you full control over your agent’s voice.
Multi-lingual support
We support over 32 languages for transcription and speech-to-text.
Choose from 100+ voices
Find the right voice to match your branch and voice agent use case.
Natural turn taking
Best-in-class turn taking algorithms ensure a smooth conversation experience.
Evaluate and hot-swap leading providers
Avoid single vendor lock in, we allow you to test and evaluate leading providers with ease.





Build exceptional voice agents
We make it easy to add ultra low-latency voice to your AI agent, while retaining full control over your agent backend.
Configure your voice experience
Powerful audio pipelines give you full control over your agent’s voice.
Multi-lingual support
We support over 32 languages for transcription and speech-to-text.
Choose from 100+ voices
Find the right voice to match your branch and voice agent use case.
Natural turn taking
Best-in-class turn taking algorithms ensure a smooth conversation experience.
Evaluate and hot-swap leading providers
Avoid single vendor lock in, we allow you to test and evaluate leading providers with ease.




Beta launching May
Beta launching May
Give your agent a voice
Give your agent a voice
Layercode is the best way for developers to build low latency voice AI Agents
Layercode is the best way for developers to build low latency voice AI Agents
Add production-ready voice to your AI agent
Add production-ready voice to your AI agent
Layercode’s cloud platform powers the real-time infrastructure required to reliably deliver your AI agents with responsive, engaging voice interfaces.




Build exceptional voice agents
We make it easy to add low-latency voice to your AI agent, while retaining full control over your agent backend.
Configure your voice experience
Powerful audio pipelines give you full control over your agent’s voice.
Multi-lingual support
We support over 32 languages for transcription and speech-to-text.
Choose from 100+ voices
Find the right voice to match your brand and voice agent use case.
Natural turn taking
Best-in-class turn taking algorithms ensure a smooth conversation experience.
Evaluate and hot-swap leading providers
Avoid single vendor lock in, we allow you to test and evaluate leading providers with ease.





Plug in your own AI agent.
Retain complete flexibility
Plug in your own AI agent.
Retain complete flexibility
Built by developers, for developers. We designed Layercode to integrate with the tools you already use and rely on.

Integrate with your existing frontend and backend AI agent
1 | import { useLayercodePipeline } from "@layercode/react-sdk"; |
2 | import { AudioVisualization } from "./AudioVisualization"; |
3 | import { MicrophoneButton } from "./MicrophoneButton"; |
4 | |
5 | export function VoiceAgent() { |
6 | const { status, agentAudioAmplitude } = useLayercodePipeline({ pipelineId }); |
7 | |
8 | return ( |
9 | <div className="flex flex-col"> |
10 | <h1>Voice Agent</h1> |
11 | <AudioVisualization amplitude={agentAudioAmplitude} /> |
12 | <MicrophoneButton /> |
13 | </div> |
14 | ); |
15 | } |
16 |
1 | import { createGoogleGenerativeAI } from "@ai-sdk/google"; |
2 | import { streamText } from "ai"; |
3 | import { streamResponse } from "@layercode/node-server-sdk"; |
4 | |
5 | const google = createGoogleGenerativeAI(); |
6 | |
7 | export const POST = async (request) => { |
8 | const requestBody = await request.json(); |
9 | const text = requestBody.text; |
10 | |
11 | return streamResponse(requestBody, async ({ stream }) => { |
12 | if (requestBody.type === "message") { |
13 | const { textStream } = streamText({ |
14 | model: google("gemini-2.0-flash-001"), |
15 | system: "You are a helpful voice assistant.", |
16 | messages: [{ role: "user", content: text }], |
17 | onFinish: () => { |
18 | stream.end(); |
19 | }, |
20 | }); |
21 | |
22 | await stream.ttsTextStream(textStream); |
23 | } |
24 | }); |
25 | }; |
26 |

Integrate with your existing frontend and backend AI agent
1 | import { useLayercodePipeline } from "@layercode/react-sdk"; |
2 | import { AudioVisualization } from "./AudioVisualization"; |
3 | import { MicrophoneButton } from "./MicrophoneButton"; |
4 | |
5 | export function VoiceAgent() { |
6 | const { status, agentAudioAmplitude } = useLayercodePipeline({ pipelineId }); |
7 | |
8 | return ( |
9 | <div className="flex flex-col"> |
10 | <h1>Voice Agent</h1> |
11 | <AudioVisualization amplitude={agentAudioAmplitude} /> |
12 | <MicrophoneButton /> |
13 | </div> |
14 | ); |
15 | } |
16 |
1 | import { createGoogleGenerativeAI } from "@ai-sdk/google"; |
2 | import { streamText } from "ai"; |
3 | import { streamResponse } from "@layercode/node-server-sdk"; |
4 | |
5 | const google = createGoogleGenerativeAI(); |
6 | |
7 | export const POST = async (request) => { |
8 | const requestBody = await request.json(); |
9 | const text = requestBody.text; |
10 | |
11 | return streamResponse(requestBody, async ({ stream }) => { |
12 | if (requestBody.type === "message") { |
13 | const { textStream } = streamText({ |
14 | model: google("gemini-2.0-flash-001"), |
15 | system: "You are a helpful voice assistant.", |
16 | messages: [{ role: "user", content: text }], |
17 | onFinish: () => { |
18 | stream.end(); |
19 | }, |
20 | }); |
21 | |
22 | await stream.ttsTextStream(textStream); |
23 | } |
24 | }); |
25 | }; |
26 |
Use LLM and Agent libraries you know and love
Use LLM and Agent libraries you know and love









Plug in your own AI agent.
Retain complete flexibility
Built by developers, for developers. We designed Layercode to integrate with the tools you already use and rely on.

Integrate with your existing frontend and backend AI agent
1 | import { useLayercodePipeline } from "@layercode/react-sdk"; |
2 | import { AudioVisualization } from "./AudioVisualization"; |
3 | import { MicrophoneButton } from "./MicrophoneButton"; |
4 | |
5 | export function VoiceAgent() { |
6 | const { status, agentAudioAmplitude } = useLayercodePipeline({ pipelineId }); |
7 | |
8 | return ( |
9 | <div className="flex flex-col"> |
10 | <h1>Voice Agent</h1> |
11 | <AudioVisualization amplitude={agentAudioAmplitude} /> |
12 | <MicrophoneButton /> |
13 | </div> |
14 | ); |
15 | } |
16 |
1 | import { createGoogleGenerativeAI } from "@ai-sdk/google"; |
2 | import { streamText } from "ai"; |
3 | import { streamResponse } from "@layercode/node-server-sdk"; |
4 | |
5 | const google = createGoogleGenerativeAI(); |
6 | |
7 | export const POST = async (request) => { |
8 | const requestBody = await request.json(); |
9 | const text = requestBody.text; |
10 | |
11 | return streamResponse(requestBody, async ({ stream }) => { |
12 | if (requestBody.type === "message") { |
13 | const { textStream } = streamText({ |
14 | model: google("gemini-2.0-flash-001"), |
15 | system: "You are a helpful voice assistant.", |
16 | messages: [{ role: "user", content: text }], |
17 | onFinish: () => { |
18 | stream.end(); |
19 | }, |
20 | }); |
21 | |
22 | await stream.ttsTextStream(textStream); |
23 | } |
24 | }); |
25 | }; |
26 |
Use LLM and Agent libraries you know and love









Deliver an exceptional experience to your users, wherever they are
Our network architecture provides rock-solid performance and reliability for your realtime AI agents, delivering users smooth, low-latency voice to ensure every interaction feels natural.
Ultra-low latency
Sub-400ms low-latency voice and video interactions.
Global scale
Instantly scale to millions of concurrent voice and video sessions.
Global connectivity
Our connectivity cloud sits within 50ms of all Internet users and spans over 330 locations across all major continents.
Private internet backbone
Our network routes your data through a dedicated private backbone for maximum performance & rock-solid reliability.

Deliver an exceptional experience to your users, wherever they are
Our network architecture provides rock-solid performance and reliability for your realtime AI agents, delivering users smooth, low-latency voice to ensure every interaction feels natural.
Ultra-low latency
Sub-400ms low-latency voice and video interactions.
Global scale
Instantly scale to millions of concurrent voice and video sessions.
Global connectivity
Our connectivity cloud sits within 50ms of all Internet users and spans over 330 locations across all major continents.
Private internet backbone
Our network routes your data through a dedicated private backbone for maximum performance & rock-solid reliability.

Deliver an exceptional experience to your users, wherever they are
Our network architecture provides rock-solid performance and reliability for your realtime AI agents, delivering users smooth, low-latency voice to ensure every interaction feels natural.
Ultra-low latency
Sub-400ms low-latency voice and video interactions.
Global scale
Instantly scale to millions of concurrent voice and video sessions.
Global connectivity
Our connectivity cloud sits within 50ms of all Internet users and spans over 330 locations across all major continents.
Private internet backbone
Our network routes your data through a dedicated private backbone for maximum performance & rock-solid reliability.
Full control over your agent's voice pipelines
Full control over your agent's voice pipelines
Our dashboard makes it easy to build powerful, production-ready realtime voice pipelines and brings total transparency to every step to aid monitoring and debugging.




Powerful audio pipelines
Connect audio and video
providers together into pipelines.
Choose from existing templates
Use pre-made pipeline for common
voice & video agent use cases.
Easily switch between leading voice models
Switch between leading voice and video providers in one click.
Audio processing plugins
Easily drop in turn detection, noise reduction and other powerful audio plugins into your pipelines.
Latency Analytics
Track latency at every stage of your pipeline to spot issues before they impact users.
Simplify billing
Get full transparency on your costs by consolidating multiple providers into a single bill.
Building the future
of conversational, agentic AI
Voice agents can help save time and money, or give businesses new tools to support customers and employees.
Customer Support
Automated chatbots can handle FAQs & troubleshooting at scale. Voice assistants provide help over the phone.
Front Desk and Reception
Interactive voice and video response systems can act as virtual receptionists or provide receptionists where human interaction was previously unfeasible.
Sales and Manager Training
Unlimited training for employees and managers: Use simulated roleplay and scenario-based training through voice and video interactions.
Sales and Lead Generation
Conversational agents can qualify leads. Proactive voice calls are able to engage a higher volume of potential customers, beyond human-scale.
Interviews and Screening
Voice-enabled agents can pre-screen candidates and schedule interviews at scale and convenience to the candidates far beyond a human employee’s capability.
Telehealth & Remote Medical
Voice-enabled triage and consultation services help improve access to care, and improve healthcare systems efficiency.

Powerful audio pipelines
Connect audio and video
providers together into pipelines.
Choose from existing templates
Use pre-made pipeline for common
voice & video agent use cases.
Easily switch between leading voice models
Switch between leading voice and video providers in one click.
Audio processing plugins
Easily drop in turn detection, noise reduction and other powerful audio plugins into your pipelines.
Latency Analytics
Track latency at every stage of your pipeline to spot issues before they impact users.
Simplify billing
Get full transparency on your costs by consolidating multiple providers into a single bill.
Building the future
of conversational, agentic AI
Voice agents can help save time and money, or give businesses new tools to support customers and employees.
Customer Support
Automated chatbots can handle FAQs & troubleshooting at scale. Voice assistants provide help over the phone.
Front Desk and Reception
Interactive voice and video response systems can act as virtual receptionists or provide receptionists where human interaction was previously unfeasible.
Sales and Manager Training
Unlimited training for employees and managers: Use simulated roleplay and scenario-based training through voice and video interactions.
Sales and Lead Generation
Conversational agents can qualify leads. Proactive voice calls are able to engage a higher volume of potential customers, beyond human-scale.
Interviews and Screening
Voice-enabled agents can pre-screen candidates and schedule interviews at scale and convenience to the candidates far beyond a human employee’s capability.
Telehealth & Remote Medical
Voice-enabled triage and consultation services help improve access to care, and improve healthcare systems efficiency.

Powerful audio pipelines
Connect audio and video
providers together into pipelines.
Choose from existing templates
Use pre-made pipeline for common
voice & video agent use cases.
Easily switch between leading voice models
Switch between leading voice and video providers in one click.
Audio processing plugins
Easily drop in turn detection, noise reduction and other powerful audio plugins into your pipelines.
Latency Analytics
Track latency at every stage of your pipeline to spot issues before they impact users.
Simplify billing
Get full transparency on your costs by consolidating multiple providers into a single bill.
Building the future
of conversational, agentic AI
Voice agents can help save time and money, or give businesses new tools to support customers and employees.
Customer Support
Automated chatbots can handle FAQs & troubleshooting at scale. Voice assistants provide help over the phone.
Front Desk and Reception
Interactive voice and video response systems can act as virtual receptionists or provide receptionists where human interaction was previously unfeasible.
Sales and Manager Training
Unlimited training for employees and managers: Use simulated roleplay and scenario-based training through voice and video interactions.
Sales and Lead Generation
Conversational agents can qualify leads. Proactive voice calls are able to engage a higher volume of potential customers, beyond human-scale.
Interviews and Screening
Voice-enabled agents can pre-screen candidates and schedule interviews at scale and convenience to the candidates far beyond a human employee’s capability.
Telehealth & Remote Medical
Voice-enabled triage and consultation services help improve access to care, and improve healthcare systems efficiency.
Get notified when we launch
Get notified when we launch
Join our launch list to be first to try the Layercode beta.
Join our launch list to be first to try the Layercode beta.
Layercode is the developer platform to easily build production-ready voice AI agents.
Layercode is the developer platform to easily build production-ready voice AI agents.
Layercode™ is a trademark of Layercode, Inc. All rights reserved
Layercode™ is a trademark of Layercode, Inc. All rights reserved
Follow Layercode



Build exceptional voice agents
We make it easy to add ultra low-latency voice to your AI agent, while retaining full control over your agent backend.
Configure your voice experience
Powerful audio pipelines give you full control over your agent’s voice.
Multi-lingual support
We support over 32 languages for transcription and speech-to-text.
Choose from 100+ voices
Find the right voice to match your branch and voice agent use case.
Natural turn taking
Best-in-class turn taking algorithms ensure a smooth conversation experience.
Evaluate and hot-swap leading providers
Avoid single vendor lock in, we allow you to test and evaluate leading providers with ease.





Build exceptional voice agents
We make it easy to add ultra low-latency voice to your AI agent, while retaining full control over your agent backend.
Configure your voice experience
Powerful audio pipelines give you full control over your agent’s voice.
Multi-lingual support
We support over 32 languages for transcription and speech-to-text.
Choose from 100+ voices
Find the right voice to match your branch and voice agent use case.
Natural turn taking
Best-in-class turn taking algorithms ensure a smooth conversation experience.
Evaluate and hot-swap leading providers
Avoid single vendor lock in, we allow you to test and evaluate leading providers with ease.



