An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hello Akundy, Vyas,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to know Azure OpenAI gpt-audio model general availability.
Your model is GA. The “preview” in api-version does not mean the model is preview. It only reflects the API surface you’re calling. For real-time voice, use gpt-realtime; for batch or async audio tasks, stick with gpt-audio via /chat/completions.
Regarding your questions:
Does
api_version=2025-01-01-previewmean thegpt-audiomodel is still in preview?
No. The model lifecycle (GA vs preview) is separate from the API version name.
Why does the documentation page you linked not show a preview label?
That page Models sold directly by Azure - https://learn.microsoft.com/en-us/azure/ai-foundry/foundry-models/concepts/models-sold-directly-by-azure lists GA models without preview tags. This matches the Model Catalog, which shows gpt-audio as GA. The confusion arises because:
- Older audio models (e.g.,
gpt-4o-audio-preview) were explicitly labeled preview. - The API version still uses
-previewfor audio completions features, even though the model is GA.
Why is there no dedicated documentation for
gpt-audiolike forgpt-realtime?
-
gpt-audiois designed for asynchronous audio input/output (e.g., text-to-speech, audio summarization) using the Chat Completions API with audio modalities. - The usage pattern is documented under Audio generation quickstart and Audio capabilities pages, not under a separate
gpt-audioarticle. - https://learn.microsoft.com/en-us/azure/ai-foundry/openai/audio-completions-quickstart and https://learn.microsoft.com/en-us/azure/ai-foundry/openai/concepts/audio -
gpt-realtimehas its own docs because it uses a different API (Realtime API) for low-latency, streaming voice interactions (WebRTC/WebSocket and https://learn.microsoft.com/en-us/azure/ai-foundry/openai/how-to/realtime-audio-webrtc
So, if you would like to look for gpt-audio usage use the below links:
- https://learn.microsoft.com/en-us/azure/ai-foundry/openai/audio-completions-quickstart
- https://learn.microsoft.com/en-us/azure/ai-foundry/openai/concepts/audio
I hope this is helpful! Do not hesitate to let me know if you have any other questions or clarifications.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.