Open AI realtime cluster model failing to converse...
# support
c
I'm trying to build my assistant using Open AI Realtime cluster model with supported voices and with the setting of "Assistant waits for user to speak" - despite this, the assistant doesn't work. No logs too. Is there anything that I'm doing wrong here? It was working fine till yesterday late evening, from today, it's acting up with this issue.
v
Thanks for sharing the details. To help narrow down the issue, could you confirm if your assistant's configuration explicitly sets both the Assistant ID and Phone Number ID in your tool or workflow? Missing these fields is a common cause for the assistant not speaking, even when everything else appears correct ([Vapi documentation](https://docs.vapi.ai/debugging)). Once you confirm this, I can suggest the next troubleshooting steps! Source: - [Debugging voice agents](https://docs.vapi.ai/debugging)
c
@Vapi Support Bot I have just built the agent inside Vapi alone. And when I'm trying to Test it by speaking with it, no conversation is happening from the ai side.
v
Thanks for clarifying your setup. When you test the assistant in the Vapi dashboard, do you see any entries or error messages in the Call Logs or API Logs under the "Observe" section? This can help identify if the issue is with the assistant's configuration or with the voice/model integration ([Vapi debugging guide](https://docs.vapi.ai/debugging)). Source: - [Debugging voice agents](https://docs.vapi.ai/debugging)
c
@Vapi Support Bot no logs that show errors as such... It is just not talking in return to whatever I say
v
Try switching your assistant's voice to another supported option, such as
"alloy"
or
"marin"
, in your configuration to check if the issue is specific to the
"cedar"
voice.
Copy code
json
"voice": {
  "provider": "openai",
  "voiceId": "alloy"
}
If the assistant responds with a different voice, this helps confirm if the problem is related to the Cedar voice integration. You can then report this finding to Vapi support for further investigation ([Vapi documentation](https://docs.vapi.ai/openai-realtime#verify-voice-compatibility)). Source: - [OpenAI Realtime documentation](https://docs.vapi.ai/openai-realtime#verify-voice-compatibility)
v
Try updating your assistant's configuration to use a different supported voice, such as
"alloy"
, to check if the issue is specific to the
"cedar"
voice.
Use the following snippet in your assistant settings:
Copy code
json
"voice": {
  "provider": "openai",
  "voiceId": "alloy"
}
If the assistant responds with this change, it confirms a Cedar voice issue—please report this to Vapi support for further investigation. [See documentation for details](https://docs.vapi.ai/openai-realtime#verify-voice-compatibility). Source: - [OpenAI Realtime documentation](https://docs.vapi.ai/openai-realtime#verify-voice-compatibility)
c
I tried switching to Alloy voice in config, still the same issue
AI isn't talking
pipeline-error-openai-429-exceeded-quota got this error @Vapi Support Bot
v
Your assistant is not responding because your OpenAI API quota has been exceeded. To resolve this, log in to your OpenAI account and check your usage limits. If needed, increase your quota or wait for it to reset before testing again. Error reference:
Copy code
pipeline-error-openai-429-exceeded-quota
[See Vapi error documentation for details.](https://docs.vapi.ai/calls/call-ended-reason) Source: - [Call ended reasons (Vapi documentation)](https://docs.vapi.ai/calls/call-ended-reason)
c
Please remove your OpenAI API key if you’re using one—doing so should resolve the issue.
3 Views