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.
Whisper is a pre-trained model for automatic speech recognition (ASR) and speech translation.
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.
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"}],
)