Compare

Whisper vs Whisper-Large-V3-Turbo

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Whisper
openai/whisper
Whisper-Large-V3-Turbo
openai/whisper-large-v3-turbo
Provider
OpenAI
OpenAI
Family
Whisper
Whisper
Modality
audio-stt
audio-stt
Context window
Max output
Released
2023-09-25
2024-05-22
License
Open-weight
Open-weight
Per minute
$0.0040 /min
$0.0060 /min
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
View model →
View model →
Whisper
openai/whisper
Full spec →

Whisper is a general-purpose speech recognition model. It is trained on a large dataset of diverse audio and is also a multitasking model that can perform multilingual speech recognition, speech translation, and language identification.

Strengths
  • Speech-to-text transcription
Use cases
Meeting transcriptsCaptionsVoice agents
Whisper-Large-V3-Turbo
openai/whisper-large-v3-turbo
Full spec →

Whisper is a pre-trained model for automatic speech recognition (ASR) and speech translation.

Strengths
  • Speech-to-text transcription
Use cases
Meeting transcriptsCaptionsVoice agents

Compare with another

Whisper vs Whisper-Tiny-EN
openai/whisper · openai/whisper-tiny-en
Whisper-Large-V3-Turbo vs Whisper-Tiny-EN
openai/whisper-large-v3-turbo · openai/whisper-tiny-en
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Whisper
client.chat.completions.create(
    model="openai/whisper",
    messages=[{"role":"user","content":"hello"}],
)

# Whisper-Large-V3-Turbo
client.chat.completions.create(
    model="openai/whisper-large-v3-turbo",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →