OpenAI: GPT 4o Transcribe Diarize
Chatopenai/gpt-4o-transcribe-diarizeGPT-4o Transcribe Diarize 是 OpenAI 面向高质量语音转文本和说话人区分的模型,适合会议、访谈和多说话人音频的转写场景。
128K context window
128K max output tokens
Released: 2025-10-15
Protocols:OpenAI
Capabilities:Audio Input
PricingRate 0.15x
| Type | HaoAI Price | Official Reference | Rate |
|---|---|---|---|
| Input | $0.375/M | $2.5/M | 0.15x · 85% savings |
| Output | $1.5/M | $10/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-transcribe-diarize",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)