Compare

Whisper-Large-V3-Turbo vs Whisper-Tiny-EN

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-Large-V3-Turbo
openai/whisper-large-v3-turbo
Whisper-Tiny-EN
openai/whisper-tiny-en
Provider
OpenAI
OpenAI
Family
Whisper
Whisper
Modality
audio-stt
audio-stt
Context window
Max output
Released
2024-05-22
2024-04-22
License
Open-weight
Open-weight
Per minute
$0.0060 /min
$0.0040 /min
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
View model →
View model →
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
Whisper-Tiny-EN
openai/whisper-tiny-en
Full spec →

Whisper is a pre-trained model for automatic speech recognition (ASR) and speech translation. Trained on 680k hours of labelled data, Whisper models demonstrate a strong ability to generalize to many datasets and domains without the need for fine-tuning. This is the English-only version of the Whisper Tiny model which was trained on the task of speech recognition.

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 vs Whisper-Large-V3-Turbo
openai/whisper · openai/whisper-large-v3-turbo
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-Large-V3-Turbo
client.chat.completions.create(
    model="openai/whisper-large-v3-turbo",
    messages=[{"role":"user","content":"hello"}],
)

# Whisper-Tiny-EN
client.chat.completions.create(
    model="openai/whisper-tiny-en",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →