compare/WhispervsWhisper-Tiny-EN

Whisper vs Whisper-Tiny-EN

Pricing, context window, capabilities, and release date — pulled from each provider's public docs. Both are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

RUN BOTH LIVE

Paste a prompt. Watch them race.

Both models stream in parallel through your own AIgateway key. Tokens, latency, and cost update as they arrive.

Sign in to runLive streaming uses your own key. It's free to sign up.
 Whisper
openai/whisper
Whisper-Tiny-EN
openai/whisper-tiny-en
ProviderOpenAIOpenAI
FamilyWhisperWhisper
Modalityaudio-sttaudio-stt
Context window
Max output
Released2023-09-252024-04-22
Input price$0.0005 /min$0.0005 /min
Output price
Cache read
Tools
Streamingyesyes
Vision
JSON mode
Reasoning
Prompt caching
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
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
SWITCH BETWEEN THEM

One key, both models, one line different.

# pip install aigateway-py openai
# aigateway-py: sub-accounts, evals, replays, jobs, webhook verify.
# openai SDK: chat/embeddings/images/audio — drop-in compat per our SDK's own guidance.
from openai import OpenAI

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

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

# Try Whisper-Tiny-EN — same client, same key
client.chat.completions.create(
    model="openai/whisper-tiny-en",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyAdd a third model

Compare with another

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