OpenAI: GPT 4o Mini Transcribe
Chatopenai/gpt-4o-mini-transcribeGPT-4o Mini Transcribe 是 OpenAI 面向语音转文本的轻量模型,基于 GPT-4o Mini 音频能力构建,适合需要较低成本和高吞吐的转写工作流。
128K context window
128K max output tokens
Released: 2025-12-15
Protocols:OpenAI
Capabilities:Audio Input
PricingRate 0.15x
| Type | HaoAI Price | Official Reference | Rate |
|---|---|---|---|
| Input | $0.188/M | $1.25/M | 0.15x · 85% savings |
| Output | $0.75/M | $5/M | 0.15x · 85% savings |
Code Examples
from openai import OpenAI
client = OpenAI(
base_url="https://api.hao.ai/v1",
api_key="YOUR_HAOAI_API_KEY",
)
response = client.chat.completions.create(
model="openai/gpt-4o-mini-transcribe",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)