How do I deploy a voice AI agent on AWS for my business? Connect a telephony provider such as Amazon Connect, Twilio, or a SIP trunk to Amazon Nova 2 Sonic, a speech-to-speech model on Amazon Bedrock, then route live call audio through an agent runtime such as Pipecat. AWS published this pattern in December 2025.
What is the new telephony reference architecture for deploying voice agents on AWS?
AWS's telephony reference architecture links a phone or SIP connection to a hosted speech-to-speech model, then to an agent runtime that executes business logic, then routes audio back to the caller. Amazon Bedrock hosts Nova 2 Sonic at the runtime endpoint amazon.nova-2-sonic-v1:0, while Pipecat or a similar framework manages session state for each call.
This pattern comes from AWS's own reference architecture guidance, which describes a stack combining Amazon Lex V2 or Amazon Transcribe for speech recognition, Amazon Polly for speech generation, Amazon Connect or the Amazon Chime SDK for telephony and streaming, Amazon Bedrock for reasoning, and AWS Lambda for orchestration. Nova 2 Sonic collapses much of that stack into one bidirectional model, since it handles speech recognition, reasoning, and speech generation natively rather than chaining separate services together. AWS runs the compute layer on containers or serverless infrastructure such as Amazon ECS, AWS Fargate, or Lambda, with WebRTC, WebSocket, or SIP handling audio transport. According to AWS's announcement post, "Introducing Amazon Nova 2 Sonic," Amazon describes it as "our new speech-to-speech model for conversational AI," positioning it as the voice layer for exactly this kind of phone-based deployment.
How does Amazon Nova 2 Sonic integrate with existing telephony and contact-center systems?
Amazon Nova 2 Sonic connects to existing telephony systems through five named integration paths: Amazon Connect, Twilio, Vonage, AudioCodes, and Genesys, plus streaming frameworks such as LiveKit and Pipecat. AWS documents these paths so a business keeps its current phone number and SIP trunk while adding a Bedrock-hosted voice model behind it.
AWS's guidance for deploying voice agents with Pipecat and Bedrock AgentCore describes a handoff or SIP transfer step, where the live audio session moves from the existing telephony system into the agent runtime without dropping the call. The model handles codec optimization, session lifecycle management, and bidirectional event handling on the AWS side, so an operations team does not manage those telephony details directly. This handoff point is also where caller and session data can start flowing into CRM and pipeline systems instead of staying trapped inside the phone system, which is the core problem Agxntsix's AI Infrastructure practice addresses when it unifies call data with existing business tools.
What are the key benchmarks for latency, accuracy, and speech reasoning for Nova 2 Sonic?
Amazon reported an average perceived latency of 1.09 seconds for Nova Sonic in its published benchmark results. That figure sits inside the sub-1.5 second range needed to avoid audible delay in live phone conversation, per Amazon's Nova Sonic documentation.
Amazon backs this latency figure with accuracy and reasoning benchmarks published alongside the Nova 2 Sonic release. Amazon reported a speech reasoning score of 87.0 on Big Bench Audio, a 4.2% word error rate on Multilingual LibriSpeech across English, French, Italian, German, and Spanish, and a result 46.7% more accurate than GPT-4o-transcribe on the Augmented Multi Party Interaction benchmark. AWS also lists an expanded context window of up to 1M tokens and support for seven languages in the Nova 2 release notes.
| Metric | Result | Source |
|---|---|---|
| Average perceived latency | 1.09 seconds | Amazon Nova Sonic benchmark data |
| Speech reasoning (Big Bench Audio) | 87.0 | Amazon Nova Sonic benchmark data |
| Word error rate (Multilingual LibriSpeech, 5 languages) | 4.2% | Amazon Nova Sonic benchmark data |
| WER vs. GPT-4o-transcribe (AMI benchmark) | 46.7% more accurate | Amazon Nova Sonic benchmark data |
| Context window | Up to 1M tokens | AWS Nova 2 release notes |
| Supported languages | 7 | AWS Nova 2 Sonic announcement |
What is the practical deployment pattern for a voice agent on AWS?
The practical deployment pattern moves a call through five linked stages: telephony entry, media bridge, model inference, business-logic runtime, and return audio. A typical enterprise setup routes PSTN or contact-center calls through Amazon Connect or a SIP trunk before handing the live stream to a Bedrock-hosted voice agent.
AWS's sample repositories map this pattern into a repeatable build. A production deployment generally follows five steps:
- A caller reaches the business through Amazon Connect or an existing SIP or telephony provider, covering PSTN or contact-center traffic.
- The telephony layer transfers the live audio stream into the voice-agent runtime through a SIP transfer or equivalent media bridge.
- Amazon Bedrock hosts Nova 2 Sonic at the runtime endpoint amazon.nova-2-sonic-v1:0 for real-time speech-to-speech processing.
- An agent framework such as Pipecat manages session state, tool calls, function calling, and caller or session metadata for routing and escalation.
- Response audio returns to the caller through the same telephony path, tuned for phone-specific constraints such as 8 kHz telephony speech.
AWS describes a 2026 sample covering SIP/PSTN, WebSocket, and LiveKit SIP integration, and treats bidirectional streaming models as the lower-latency option compared with cascaded speech pipelines.
Which telephony providers and frameworks does AWS support for voice agents?
AWS supports direct voice-agent integration with Amazon Connect, Twilio, Vonage, AudioCodes, and Genesys, alongside streaming frameworks such as LiveKit and Pipecat. A 2026 AWS sample repository adds explicit SIP/PSTN, WebSocket, and LiveKit SIP integration patterns, covering both phone and web-based call routing for enterprises.
Each provider connects through a slightly different transport layer, which matters for a team estimating integration effort. Amazon Connect ties directly into Lambda and Nova Sonic for PSTN traffic, while Twilio, Vonage, and AudioCodes use SIP-based telephony integration, and LiveKit and Pipecat operate as streaming and agent-runtime frameworks rather than carriers.
| Provider or framework | Role | Typical transport |
|---|---|---|
| Amazon Connect | Contact center plus Lambda plus Nova Sonic | PSTN/SIP |
| Twilio | Telephony provider | SIP/WebSocket |
| Vonage | Telephony provider | SIP |
| AudioCodes | Telephony provider | SIP |
| Genesys | Contact center integration | SIP |
| LiveKit | Streaming framework | WebRTC/SIP |
| Pipecat | Agent runtime framework | WebSocket |
How does bidirectional streaming reduce latency in voice agents?
Bidirectional streaming reduces latency by moving audio to and from the model continuously, instead of waiting for a complete utterance before generating a response. Nova 2 Sonic merges speech-to-text, reasoning, and text-to-speech into one native speech-to-speech pipeline, which Amazon credits with the model's 1.09 second average perceived latency.
In a cascaded voice pipeline, audio moves through separate speech-to-text, reasoning, and text-to-speech services in sequence, and each hop adds processing time. Nova 2 Sonic runs as one bidirectional audio model with native turn detection, so it starts responding while a caller is still speaking rather than waiting for a full transcript. AWS's sample repository for telephony integration states that bidirectional streaming models provide the lowest latency compared with cascaded alternatives, the practical reason AWS built Nova 2 Sonic as a single model instead of stitching separate services together.
What compliance and governance controls are available in the AWS voice agent architecture?
The AWS voice agent architecture supports governance through caller and session metadata, authentication, access control, logging, and call-recording policies attached at the runtime layer. AWS states Nova 2 Sonic applies internal design-policy checks during runtime processing, but consent capture and data-handling rules remain the deploying business's responsibility.
Governance sits on top of the same architecture rather than inside the model alone. A business can attach caller and session metadata to enforce customer verification, define escalation paths for sensitive requests, and keep an audit-friendly event log for every call, layered onto the telephony-to-model handoff described above. Healthcare groups, financial services firms, and other regulated operators still carry their own obligations under frameworks like HIPAA and TCPA consent rules, and none of this replaces confirming call-recording and consent requirements with counsel before launch. Agxntsix builds this governance layer as part of its embedded consulting work, and as a member of the Claude Partner Network, it also brings Claude-based reasoning agents into the same AWS telephony stack where a business's roadmap calls for Claude alongside Nova Sonic.
How does this reference architecture change operations and business growth for enterprises?
The reference architecture lets an enterprise run phone coverage 24 hours a day without adding round-the-clock staffing, because the voice agent answers through the same number callers already dial. AWS's own published examples show this pattern used for customer service, travel, telecom, and dealership call automation.
Consider a private aviation operator that currently sends overnight charter inquiries to a shared voicemail box. Once a voice agent sits behind the same phone number using this architecture, every after-hours call gets answered, qualified against fleet availability, and logged before a broker starts the next morning. Agxntsix's enterprise Voice AI practice applies this same telephony-to-model-to-CRM structure to service businesses in healthcare, legal, real estate, and exotic vehicle rental, where a missed call after hours is a missed booking, and frames delivery work around a 60-day ROI commitment rather than an open-ended engineering project.
Sources
- Announcing Amazon Nova 2 Sonic for real-time conversational AI
- Introducing Amazon Nova 2 Sonic: Our new speech-to-speech model for conversational AI
- Amazon Nova 2 Sonic - AWS AI Service Cards
- Release notes for Amazon Nova 2 - AWS Documentation
- Amazon Nova 2 Sonic - AWS AI Service Cards (Italian)
- Speech-to-Speech (Amazon Nova 2 Sonic)
- Amazon Nova foundation models - AWS
- Guidance for Okta Phone-Based Multi-Factor Authentication on AWS
