OpenAI: GPT Audio
Openai · openai/gpt-audio
Runs in the cloud, on our API — not on your own machine.
tools speaks hears
The gpt-audio model is OpenAI's first generally available audio model. The new snapshot features an upgraded decoder for more natural sounding voices and maintains better voice consistency. Audio is priced...
What it costs
Audio is metered separately, per million audio tokens — not added to the text rates above.
Final AI-token prices, per million tokens. Bring your own provider key in the app to pay provider rates directly.
What it can do
Dates
Using it
In the 00 app — pick it per agent, and per tier, then build your own agents on it. Get 00.
As a drop-in API — the same model at an OpenAI-compatible endpoint. Two settings:
- Create a workspace API key in the Overblast console — usage bills that workspace's AI tokens, at the prices on this page.
- Point your base URL at
https://brain.deployd.network/ai/v1. Chat completions with streaming, embeddings,/images,/audio/transcriptionsand/videos.
curl https://brain.deployd.network/ai/v1/chat/completions \
-H "Authorization: Bearer ob_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-audio",
"messages": [{ "role": "user", "content": "Hello" }]
}'
It transcribes too — it takes audio, so the same key reaches it at
https://brain.deployd.network/ai/v1/audio/transcriptions. No per-minute rate: a recording is billed as the tokens it
becomes, at the input price above.
curl https://brain.deployd.network/ai/v1/audio/transcriptions \
-H "Authorization: Bearer ob_live_YOUR_KEY" \
-F file=@audio.mp3 \
-F model=openai/gpt-audio
# → { "text": "…what was said…" }
It speaks — ask the same chat endpoint for the audio modality; the reply carries a base64 clip. Voices and formats are the model's own.
curl https://brain.deployd.network/ai/v1/chat/completions \
-H "Authorization: Bearer ob_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-audio",
"modalities": ["text", "audio"],
"audio": { "voice": "alloy", "format": "mp3" },
"messages": [{ "role": "user", "content": "Read this aloud: your order is on its way." }]
}'
# → base64 audio in choices[0].message.audio.data
← all models · compare it with another · calling image, video and speech models
Subscribe to new models