Request Response Delayed Content
# support
g
The Agent uses the Content in the Request Response Delayed field the same way in every language. This message needs to be changed in every language. How can I do this?
v
To customize the "Request Response Delayed" message for each language, use the workflow-based multilingual support approach and set a language-specific message in each conversation node. For example:
Copy code
json
{
  "name": "english_support",
  "type": "conversation",
  "prompt": "Request is delayed. Please wait a moment.",
  ...
},
{
  "name": "spanish_support",
  "type": "conversation",
  "prompt": "La solicitud está retrasada. Por favor, espere un momento.",
  ...
},
{
  "name": "french_support",
  "type": "conversation",
  "prompt": "La demande est retardée. Veuillez patienter un instant.",
  ...
}
This way, each language path displays a custom delayed message. See the [workflow-based multilingual support guide](https://docs.vapi.ai/workflows/examples/multilingual-support) for more details. Sources: - [Multilingual support agent](https://docs.vapi.ai/assistants/examples/multilingual-agent) - [Workflow-based multilingual support](https://docs.vapi.ai/workflows/examples/multilingual-support)
@User Can anyone help with this?
m
I can help you update the Request Response Delayed message across all languages so it’s consistent and customized. We can either set a new default message or define language-specific versions if needed. Just to clarify, are you looking for a single universal message for all languages, or do you want different messages per language? @Gokhan
g
@Manja manna A single universal message for all languages ​​would be better. I understand that this message will be pronounced appropriately in every language.
m
I can definitely help you handle that. The way to approach it is to set a global default message and then create language-specific overrides so the agent automatically speaks the right version in any language. This keeps everything consistent while giving full control over customization. If you’d like, we can discuss the details privately and jump on a quick call so I can guide you or set it up directly for you. @Gokhan
g
I overcame this issue with custom API requests. If you want to update the contents of the custom tool you use via the server URL, use this structure. Custom Tool Content Update https://docs.google.com/document/d/14wywWdZzjNdERvumL1xp6dYqol4oyCgTskaRMy1guHY/edit?usp=sharing To update the Handoff Tool contents, you only need to send the messages fields. Handoff Tool Content Update https://docs.google.com/document/d/1Bd5cBGGxRlO_eL7ZfboUzaYEZS_QRjInIpGqIe1a6kk/edit?usp=sharing
3 Views