You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! It seems my account can't access the gpt-4o-realtime-preview-2024-12-17 model, but it can use the gpt-4o-realtime-preview. Should this example app consistently use the gpt-4o-realtime-preview to ensure broader audiences can run it successfully?
Here is the error response with gpt-4o-realtime-preview-2024-12-17 model:
{
"type": "response.done",
"event_id": "event_XXX",
"response": {
"object": "realtime.response",
"id": "resp_XXX",
"status": "failed",
"status_details": {
"type": "failed",
"error": {
"type": "invalid_request_error",
"code": "model_not_found",
"message": "The model `gpt-4o-realtime-preview-2024-12-17` does not exist or you do not have access to it."
}
},
"output": [],
"conversation_id": "conv_XXX",
"modalities": [
"audio",
"text"
],
"voice": "coral",
"output_audio_format": "pcm16",
"temperature": 0.8,
"max_output_tokens": "inf",
"usage": {
"total_tokens": 0,
"input_tokens": 0,
"output_tokens": 0,
"input_token_details": {
"text_tokens": 0,
"audio_tokens": 0,
"cached_tokens": 0,
"cached_tokens_details": {
"text_tokens": 0,
"audio_tokens": 0
}
},
"output_token_details": {
"text_tokens": 0,
"audio_tokens": 0
}
},
"metadata": null
}
}
Modifying the code this way resolved the issue for me:
Hello! It seems my account can't access the
gpt-4o-realtime-preview-2024-12-17
model, but it can use thegpt-4o-realtime-preview
. Should this example app consistently use thegpt-4o-realtime-preview
to ensure broader audiences can run it successfully?Here is the error response with
gpt-4o-realtime-preview-2024-12-17
model:Modifying the code this way resolved the issue for me:
I am happy to send a pull request as necessary.
The text was updated successfully, but these errors were encountered: