<ConversationRelay> TwiML noun
Legal notice
ConversationRelay, including the <ConversationRelay>
TwiML noun and API, uses artificial intelligence or machine learning technologies. By enabling or using any features or functionalities within Programmable Voice that Twilio identifies as using artificial intelligence or machine learning technology, you acknowledge and agree to certain terms. Your use of these features or functionalities is subject to the terms of the Predictive and Generative AI or ML Features Addendum.
ConversationRelay isn't compliant with the Payment Card Industry (PCI) and doesn't support Voice workflows that are subject to PCI.
Info
Before using ConversationRelay, you need to complete the onboarding steps and agree to the Predictive and Generative AI/ML Features Addendum. See the ConversationRelay Onboarding Guide for more details.
The <ConversationRelay>
TwiML noun under the <Connect>
verb routes a call to Twilio's ConversationRelay service, providing advanced AI-powered voice interactions. ConversationRelay handles the complexities of live, synchronous voice calls, such as Speech-to-Text (STT) and Text-to-Speech (TTS) conversions, session management, and low-latency communication with your application. This approach allows your system to focus on processing conversational AI logic and sending back responses effectively.
In a typical setup, <ConversationRelay>
connects to your AI application through a WebSocket, allowing real-time and event-based interaction. Your application receives transcribed caller speech in structured messages and sends responses as text, which ConversationRelay converts to speech and plays back to the caller. This setup is commonly used for customer service, virtual assistants, and other scenarios that require real-time, AI-based voice interactions.
The <ConversationRelay>
noun supports the following attributes:
Attribute name | Description | Default value | Required |
---|---|---|---|
url | The URL to your WebSocket server (must use wss:// ). | Required | |
welcomeGreeting | The message automatically played to the caller after we answer the call and establish the WebSocket connection. | Optional | |
welcomeGreetingInterruptible | Specifies if the caller can interrupt the welcomeGreeting with speech. Values can be "none" , "dtmf" , "speech" , or "any" . For backward compatibility, Boolean values are also accepted: true = "any" and false = "none" . | "any" | Optional |
language | The language code (for example, "en-US" ) that applies to both Speech-to-Text (STT) and Text-to-Speech (TTS). Setting this attribute is equivalent to setting both ttsLanguage and transcriptionLanguage . | "en-US" | Optional |
ttsLanguage | The default language code to use for TTS when the text token message doesn't specify a language. If you set both attributes, this one overrides the language attribute. You can modify this via the ttsLanguage field in the language message you send through the Service Provider Interface (SPI). | Optional | |
ttsProvider | The provider for TTS. Available choices are "Google" , "Amazon" , and "ElevenLabs" . | "ElevenLabs" | Optional |
voice | The voice used for TTS. Options vary based on the ttsProvider . For details, refer to the Twilio TTS voices. Additional voices are available for ConversationRelay. | "UgBBYS2sOqTuMpoF3BR0" (ElevenLabs), "en-US-Journey-O" (Google), "Joanna-Neural" (Amazon) | Optional |
transcriptionLanguage | The language code to use for STT when the session starts. If you set both attributes, this one overrides the language attribute for the transcription language. You can modify this via the transcriptionLanguage field in the language message you send through the SPI. | Optional | |
transcriptionProvider | The provider for STT (Speech Recognition). Available choices are "Google" and "Deepgram" . | "Google" | Optional |
speechModel | The speech model used for STT. Choices vary based on the transcriptionProvider . Refer to the provider's documentation for an accurate list. | "telephony" (Google), "nova-2-general" (Deepgram) | Optional |
interruptible | Specifies if caller speech can interrupt TTS playback. Values can be "none" , "dtmf" , "speech" , or "any" . For backward compatibility, Boolean values are also accepted: true = "any" and false = "none" . | "any" | Optional |
dtmfDetection | Specifies whether the system sends Dual-tone multi-frequency (DTMF) keypresses over the WebSocket. Set to true to turn on DTMF events. | Optional | |
reportInputDuringAgentSpeech | Specifies whether your application receives prompts and DTMF events while the agent is speaking. Values can be "none" , "dtmf" , "speech" , or "any" . Note: The default value for this attribute has changed. The default was "any" before May, 2025 and it's now "none" . | "none" | Optional |
preemptible | Specifies if the TTS of the current talk cycle can allow text tokens from the subsequent talk cycle to interrupt. | false | Optional |
hints | A comma-separated list of words or phrases that helps Speech-to-Text recognition for uncommon words, product names, or domain-specific terminology. Works similarly to the hints attribute in <Gather> . | Optional | |
debug | A space-separated list of options that you can use to subscribe to debugging messages. Options are debugging , speaker-events , and tokens-played . The debugging option provides general debugging information. speaker-events will notify your application about agentSpeaking and clientSpeaking events. tokens-played will provide messages about what's just been played over TTS. | Optional | |
elevenlabsTextNormalization | Specifies whether or not to apply text normalization while using the ElevenLabs TTS provider. Options are "on" , "auto" , or "off" . "auto" has the same effect as "off" for ConversationRelay voice calls. | "off" | Optional |
intelligenceService | A Conversational Intelligence Service SID or unique name for persisting conversation transcripts and running Language Operators for virtual agent observability. Please see this guide for more details. | Optional |
Include nested elements within <ConversationRelay>
for more granular configuration. For more information on configuring ConversationRelay, refer to the ConversationRelay Onboarding Guide.
The <Language>
element maps a language code to specific TTS and STT settings. Use this element to configure multiple languages for your session.
Example
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4const connect = response.connect();5const conversationrelay = connect.conversationRelay({6url: 'wss://mywebsocketserver.com/websocket'7});8conversationrelay.language({9code: 'sv-SE',10ttsProvider: 'amazon',11voice: 'Elin-Neural',12transcriptionProvider: 'google',13speechModel: 'long'14});15conversationrelay.language({16code: 'en-US',17ttsProvider: 'google',18voice: 'en-US-Journey-O'19});2021console.log(response.toString());
Output
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Connect>4<ConversationRelay url="wss://mywebsocketserver.com/websocket">5<Language code="sv-SE" ttsProvider="amazon" voice="Elin-Neural" transcriptionProvider="google" speechModel="long"/>6<Language code="en-US" ttsProvider="google" voice="en-US-Journey-O" />7</ConversationRelay>8</Connect>9</Response>
Attributes
Attribute name | Description of attributes | Default value | Required |
---|---|---|---|
code | The language code (for example, "en-US" ) that applies to both STT and TTS. | Required | |
ttsProvider | The provider for TTS. Choices are "Google" , "Amazon" , and "ElevenLabs" . | Inherited from <ConversationRelay> | Optional |
voice | The voice used for TTS. Choices vary based on the ttsProvider . | Inherited from <ConversationRelay> | Optional |
transcriptionProvider | The provider for STT. Choices are "Google" and "Deepgram" . | Inherited from <ConversationRelay> | Optional |
speechModel | The speech model used for STT. Choices vary based on the transcriptionProvider . | Inherited from <ConversationRelay> | Optional |
language | The language code for the session (for example, "en-US" ). | "en-US" | Optional |
customParameter | Custom parameters to be sent in the setup message. | Optional |
Notes
- If you specify the same language code in both
<ConversationRelay>
and<Language>
, the settings in<Language>
take precedence. ConversationRelay
provides default settings for commonly used languages.
The <Parameter>
element allows you to send custom parameters from the TwiML directly into the initial "setup" message sent over the WebSocket. These parameters appear under the customParameters
field in the JSON message.
Example
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4const connect = response.connect();5const conversationrelay = connect.conversationRelay({6url: 'wss://mywebsocketserver.com/websocket'7});8conversationrelay.parameter({9name: 'foo',10value: 'bar'11});12conversationrelay.parameter({13name: 'hint',14value: 'Annoyed customer'15});1617console.log(response.toString());
Output
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Connect>4<ConversationRelay url="wss://mywebsocketserver.com/websocket">5<Parameter name="foo" value="bar"/>6<Parameter name="hint" value="Annoyed customer"/>7</ConversationRelay>8</Connect>9</Response>
Resulting Setup Message
1{2"type": "setup",3"sessionId": "VX00000000000000000000000000000000",4"callSid": "CA00000000000000000000000000000000",5"...": "...",6"customParameters": {7"foo": "bar",8"hint": "Annoyed customer"9}10}
1const VoiceResponse = require('twilio').twiml.VoiceResponse;23const response = new VoiceResponse();4const connect = response.connect({5action: 'https://myhttpserver.com/connect_action'6});7connect.conversationRelay({8url: 'wss://mywebsocketserver.com/websocket',9welcomeGreeting: 'Hi! Ask me anything!'10});1112console.log(response.toString());
Output
1<?xml version="1.0" encoding="UTF-8"?>2<Response>3<Connect action="https://myhttpserver.com/connect_action">4<ConversationRelay url="wss://mywebsocketserver.com/websocket" welcomeGreeting="Hi! Ask me anything!" />5</Connect>6</Response>
action
(optional): The URL that Twilio will request when the<Connect>
verb ends.url
(required): The URL of your WebSocket server (must use thewss://
protocol).welcomeGreeting
(optional): The message automatically played to the caller after we answer the call and establish the WebSocket connection.
When the TwiML execution is complete, Twilio will make a callback to the action
URL with call information and the return parameters from ConversationRelay
.
Language settings refer to configurations for both Text-to-Speech and Speech-to-Text:
- Text-to-Speech (TTS) settings:
ttsLanguage
ttsProvider
voice
- Speech-to-Text (STT) settings:
transcriptionLanguage
transcriptionProvider
speechModel
Configure language settings in two places:
- Attributes of
<ConversationRelay>
: These serve as the default settings used when the session starts. - Within
<Language>
Elements: Each<Language>
element configures settings for a specific language code. You can include multiple<Language>
elements to support multiple languages.
- In
<ConversationRelay>
, thettsLanguage
attribute overrides thelanguage
attribute for the default TTS language. - In
<ConversationRelay>
, thetranscriptionLanguage
attribute overrides thelanguage
attribute for the STT language. - If a
<Language>
element specifies the samecode
attribute as in<ConversationRelay>
, the<Language>
element's settings take precedence. - The system uses default values when you don't provide specific settings.
Default Values
language
: Defaults toen-US
if not specified.ttsProvider
: Defaults toElevenLabs
if not specified.transcriptionProvider
: Defaults toGoogle
if not specified.- If you set the
ttsProvider
attribute without thevoice
attribute, the system uses a default voice for that provider. - If you set the
transcriptionProvider
attribute without thespeechModel
attribute, the system uses a default model for that provider. - If you set the
voice
attribute without thettsProvider
attribute, the system infers the provider from the default or specifiedttsProvider
. - If you set the
speechModel
attribute without thetranscriptionProvider
attribute, the system infers the provider from the default or specifiedtranscriptionProvider
.
For Speech-to-Text (STT) settings:
- At session start, the service uses the
transcriptionLanguage
attribute to initiate the STT session. - If the combination of the
transcriptionProvider
andspeechModel
attributes is invalid, the call disconnects, and the system reports an error in the action callback and error notifications. - You can change the
transcriptionLanguage
attribute during the session via thelanguage
message you send through the Service Provider Interface (SPI).
For Text-to-Speech (TTS) settings:
- When the
lang
property is present in thetext
token message from the SPI, the service uses it to select the TTS voice. - If the combination of the
ttsProvider
andvoice
attributes is invalid, the system sends an error message over the SPI. - If you don't specify the
lang
property in thetext
token, the service uses the current TTS language settings.
When an action
URL is specified in the <Connect>
verb, ConversationRelay
will make a request to that URL when the <Connect>
verb ends. The request includes call information and session details.
Example Payloads
1{2"AccountSid": "AC00000000000000000000000000000000",3"CallSid": "CA00000000000000000000000000000000",4"CallStatus": "in-progress",5"From": "client:caller",6"To": "test:conversationrelay",7"Direction": "inbound",8"ApplicationSid": "AP00000000000000000000000000000000",9"SessionId": "VX00000000000000000000000000000000",10"SessionStatus": "ended",11"SessionDuration": "25",12"HandoffData": "{\"reason\": \"The caller requested to talk to a real person\"}"13}
1{2"AccountSid": "AC00000000000000000000000000000000",3"CallSid": "CA00000000000000000000000000000000",4"CallStatus": "in-progress",5"From": "client:caller",6"To": "test:conversationrelay",7"Direction": "inbound",8"ApplicationSid": "AP00000000000000000000000000000000",9"SessionId": "VX00000000000000000000000000000000",10"SessionStatus": "failed",11"SessionDuration": "10",12"ErrorCode": "39001",13"ErrorMessage": "Network connection to WebSocket server failed."14}
1{2"AccountSid": "AC00000000000000000000000000000000",3"CallSid": "CA00000000000000000000000000000000",4"CallStatus": "completed",5"From": "client:caller",6"To": "test:conversationrelay",7"Direction": "inbound",8"ApplicationSid": "AP00000000000000000000000000000000",9"SessionId": "VX00000000000000000000000000000000",10"SessionStatus": "completed",11"SessionDuration": "35"12}
ConversationRelay
, including the <ConversationRelay>
TwiML nouns and APIs, use artificial intelligence or machine learning technologies.
Our AI Nutrition Facts for ConversationRelay
provide an overview of the AI feature you're using, so you can better understand how the AI is working with your data. The below AI Nutrition Label details the ConversationRelay AI qualities. For more information and the glossary regarding the AI Nutrition Facts Label, refer to our AI Nutrition Facts page.
AI Nutrition Facts
ConversationRelay (STT and TTS) - Programmable Voice - Deepgram
- Description
- Generate speech to text in real-time through a WebSocket API in Programmable Voice.
- Privacy Ladder Level
- N/A
- Feature is Optional
- Yes
- Model Type
- Automatic Speech Recognition
- Base Model
- Deepgram Nova2
- Base Model Trained with Customer Data
- No
- Customer Data is Shared with Model Vendor
- No
- Training Data Anonymized
- N/A
- Data Deletion
- N/A
- Human in the Loop
- Yes
- Data Retention
- N/A
- Logging & Auditing
- Yes
- Guardrails
- Yes
- Input/Output Consistency
- Yes
- Other Resources
- Learn more about this label at nutrition-facts.ai
Trust Ingredients
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
Base Model is not trained using any Customer Data.
Customer Data is not stored or retained in the Base Model.
Customer can view and listen to the input and output in the customer's own terminal.
Compliance
Customer can view and listen to the input and output in the customer's own terminal.
Customer can view and listen to the input and output in the customer's own terminal.
Customer is responsible for human review.
Learn more about this label at nutrition-facts.ai
AI Nutrition Facts
ConversationRelay (STT and TTS) - Programmable Voice - Google AI
- Description
- Generate speech to text in real-time and convert text into natural-sounding speech through a WebSocket API in Programmable Voice.
- Privacy Ladder Level
- N/A
- Feature is Optional
- Yes
- Model Type
- Generative and Predictive - Automatic Speech Recognition and Text-to-Speech
- Base Model
- Google Speech-to-Text; Google Text-to-Speech
- Base Model Trained with Customer Data
- No
- Customer Data is Shared with Model Vendor
- No
- Training Data Anonymized
- N/A
- Data Deletion
- N/A
- Human in the Loop
- Yes
- Data Retention
- N/A
- Logging & Auditing
- Yes
- Guardrails
- Yes
- Input/Output Consistency
- Yes
- Other Resources
- Learn more about this label at nutrition-facts.ai
Trust Ingredients
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
Base Model is not trained using any Customer Data.
Customer Data is not stored or retained in the Base Model.
Customer can view and listen to the input and output in the customer's own terminal.
Compliance
Customer can view and listen to the input and output in the customer's own terminal.
Customer can view and listen to the input and output in the customer's own terminal.
Customer is responsible for human review.
Learn more about this label at nutrition-facts.ai
AI Nutrition Facts
ConversationRelay (STT and TTS) - Programmable Voice - Amazon AI
- Description
- Convert text into natural sounding speech through a websocket API in Programmable Voice.
- Privacy Ladder Level
- N/A
- Feature is Optional
- Yes
- Model Type
- Generative and Predictive
- Base Model
- Amazon Polly Text-to-Speech
- Base Model Trained with Customer Data
- No
- Customer Data is Shared with Model Vendor
- No
- Training Data Anonymized
- N/A
- Data Deletion
- N/A
- Human in the Loop
- Yes
- Data Retention
- N/A
- Logging & Auditing
- Yes
- Guardrails
- Yes
- Input/Output Consistency
- Yes
- Other Resources
- Learn more about this label at nutrition-facts.ai
Trust Ingredients
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
ConversationRelay uses the Default Base Model provided by the Model Vendor. The Base Model is not trained using Customer Data.
Base Model is not trained using any Customer Data.
Customer Data is not stored or retained in the Base Model.
Customer can view and listen to the input and output in the customer's own terminal.
Compliance
Customer can view and listen to the input and output in the customer's own terminal.
Customer can view and listen to the input and output in the customer's own terminal.
Customer is responsible for human review.
Learn more about this label at nutrition-facts.ai
AI Nutrition Facts
ConversationRelay (STT and TTS) - Programmable Voice - ElevenLabs
- Description
- Convert text into a human-sounding voice using speech synthesis technology from ElevenLabs.
- Privacy Ladder Level
- N/A
- Feature is Optional
- Yes
- Model Type
- Predictive
- Base Model
- ElevenLabs Text-To-Speech: Flash 2 and Flash 2.5
- Base Model Trained with Customer Data
- No
- Customer Data is Shared with Model Vendor
- No
- Training Data Anonymized
- N/A
- Data Deletion
- N/A
- Human in the Loop
- Yes
- Data Retention
- Customer can review TwiML logs, including <Say> Logs, to debug and troubleshoot for up to 30 days.
- Logging & Auditing
- Yes
- Guardrails
- Yes
- Input/Output Consistency
- Yes
- Other Resources
- Learn more about this label at nutrition-facts.ai
Trust Ingredients
The Base Model is not trained using any Customer Data.
Programmable Voice uses the default Base Model provided by the Model Vendor. The Base Model is not trained using customer data.
Base Model is not trained using any Customer Data.
The Base Model is not trained using any Customer Data.
Customers can view text input and listen to the audio output.
Compliance
Customers can view text input and listen to the audio output.
Customers can view text input and listen to the audio output.
Customer is responsible for human review.
Learn more about this label at nutrition-facts.ai