gpt-audio-1.5
OpenAI logo

GPT Audio 1.5

gpt-audio-1.5
OpenAI
The gpt-audio model is OpenAI's first officially released (generally available) audio model. It supports audio input and output and can be used in Chat Completions.

Pricing

PricingOutput AudioInput Audio
$2.500$10.000
$64/M tokens$32/M tokens

Input Modalities

  • Text
  • Audio

Output Modalities

  • Text
  • Audio

Capabilities

  • Thinking
  • Tool calling
  • Structured outputs

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="gpt-audio-1.5",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is gpt-audio-1.5?

The gpt-audio model is OpenAI's first officially released (generally available) audio model. It supports audio input and output and can be used in Chat Completions.