GeraDeluxer
08/12/2025, 9:21 PMChiranjeet Mishra
08/13/2025, 7:05 PMmessagePlan. 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:
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.GeraDeluxer
08/13/2025, 10:20 PMChiranjeet Mishra
08/16/2025, 12:05 AM