Phill
01/19/2026, 12:14 PMPhill
01/19/2026, 12:29 PMPhill
01/19/2026, 4:07 PMJarrah
01/19/2026, 10:38 PMPhill
01/20/2026, 11:32 AMJarrah
01/20/2026, 6:24 PMPhill
01/21/2026, 2:31 PMJarrah
01/22/2026, 7:28 AMChiranjeet Mishra
01/22/2026, 8:45 PM{
"voice": {
"provider": "openai",
"voiceId": "alloy" // Available voices: alloy, echo, shimmer
}
}
How to set this up in the Dashboard:
1. Navigate to Assistants in your Vapi Dashboard
2. Select your assistant or create a new one
3. In the Voice section, choose OpenAI as the provider
4. Select your preferred voice (alloy, echo, shimmer)
5. Click Publish to save
Option 2: OpenAI Realtime API (Speech-to-Speech)
For ultra-low latency conversations, Vapi supports OpenAI's Realtime API, which processes audio input and output natively (speech-to-speech) without the traditional STT → LLM → TTS pipeline:
{
"model": {
"provider": "openai",
"model": "gpt-realtime-2025-08-28",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
}
]
},
"voice": {
"provider": "openai",
"voiceId": "alloy" // Supported: alloy, echo, shimmer, marin, cedar
}
}
Available Realtime Models:
• gpt-realtime-2025-08-28 (Production-ready)
• gpt-4o-realtime-preview-2024-12-17 (Preview)
• gpt-4o-mini-realtime-preview-2024-12-17 (Preview, cost-optimized)
Note: The realtime models have some limitations - Knowledge Bases are not currently supported, and certain voices (ash, ballad, coral, fable, onyx, nova) are not compatible.
Documentation References:
• OpenAI Voice Provider: [https://docs.vapi.ai/providers/voice/openai](https://docs.vapi.ai/providers/voice/openai)
• OpenAI Realtime Integration: [https://docs.vapi.ai/openai-realtime](https://docs.vapi.ai/openai-realtime)
Let me know if you need help configuring either option!