hxrdxk
06/16/2025, 7:43 AMVapi Support Bot
06/16/2025, 7:45 AMassistantOverrides (including variableValues) feature is not available in the Chat APIs—it's only supported for phone calls.
As a workaround, you can send a dynamic system message directly in your chat request to customize the prompt:
json
{
"messages": [
{ "role": "system", "content": "Hello John! How can I help you today?" }
]
}
For now, this is the best way to inject dynamic content into your chat assistant's prompt.
Sources:
- [Vapi Dynamic Variables Documentation](https://docs.vapi.ai/assistants/dynamic-variables)
- [Vapi Personalization Documentation](https://docs.vapi.ai/assistants/personalization)Chiranjeet Mishra
06/16/2025, 7:55 AM