OpenAIPaidOperationalModerated
Gpt Realtime 1.5
API model name: gpt-realtime-1.5
Gpt Realtime 1.5 is OpenAI's music generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 65+ other models on Api.Airforce.
Pricing
Billed per generation — see the pricing page for current rates.
Specifications
- Provider
- OpenAI
- Type
- music generation model
What is Gpt Realtime 1.5 used for?
- Music & audio generation — background tracks, jingles and soundscapes.
Related models
Chatgpt ImageOpenAIDall E 2OpenAI · $10.00 / 1MDall E 3OpenAI · $20.00 / 1MGpt 3.5OpenAIGpt 3.5 Turbo 16kOpenAIGpt 4OpenAI · $6.42 / 1MGpt 4 0125OpenAI · $2.13 / 1MGpt 4 1106OpenAI · $2.13 / 1MGpt 4 32kOpenAIGpt 4 AllOpenAI · $5.13 / 1MGpt 4 TurboOpenAI · $2.13 / 1MGpt 4 VisionOpenAI · $2.13 / 1M
Gpt Realtime 1.5 — frequently asked questions
- How much does Gpt Realtime 1.5 cost?
- Gpt Realtime 1.5 is billed per generation rather than per token. See the pricing page for the current rate.
- What can Gpt Realtime 1.5 do?
- Gpt Realtime 1.5 is OpenAI's music generation model, accessible through the Api.Airforce API.
- Is Gpt Realtime 1.5 free to use?
- Gpt Realtime 1.5 is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Gpt Realtime 1.5 via the API?
- Gpt Realtime 1.5 is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID gpt-realtime-1.5 with your Api.Airforce API key.
- Who makes Gpt Realtime 1.5?
- Gpt Realtime 1.5 is OpenAI's music generation model, served through the unified Api.Airforce gateway alongside 65+ other models.
Loading live metrics…
Loading live metrics…
Use Gpt Realtime 1.5 via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass gpt-realtime-1.5 as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-realtime-1.5",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="gpt-realtime-1.5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "gpt-realtime-1.5",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);