Custom Idle Messages
# support
g
c
You can add custom idle messages and translate them into Spanish for your assistant by configuring the
messagePlan
. Here's how you can set custom idle messages: - Use the server SDK and create or update your assistant's
messagePlan
. - Include your desired idle messages in Spanish within the configuration. Example Configuration:
Copy code
typescript
const assistant = await client.assistants.create({
  name: "Support Assistant",
  messagePlan: {
    idleMessages: [
      "¿Sigues ahí?",
      "¿Puedo ayudarte con algo más?",
      "Estoy aquí cuando quieras continuar."
    ],
    idleTimeoutSeconds: 15,
    idleMessageMaxSpokenCount: 3,
    idleMessageResetCountOnUserSpeechEnabled: true
  }
});
For more detailed steps, you can refer to the [Idle Messages Documentation](https://docs.vapi.ai/assistants/idle-messages). This will help localize your assistant's engagement with the audience effectively.
g
Thanks a lot 🙏
c
Glad the issue was resolved. Please reach out to us if you have any other questions regarding this issue
2 Views