Overview
About this model
Whisper large-v3-turbo is a finetuned version of a pruned Whisper large-v3. In other words, it's the exact same model, except that the number of decoding layers have reduced from 32 to 4. As a result, the model is way faster, at the expense of a minor quality degradation.
Specifications
Model details
- Provider
- OpenAI
- Modality
- Speech-to-text
- Pricing
- $0.10 / 1M tok
API
Call it in code
One OpenAI-compatible API. Swap the model id and you're done.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecohash.com/v1",
api_key="YOUR_API_KEY",
)
transcript = client.audio.transcriptions.create(
model="whisper-large-v3-turbo",
file=open("audio.mp3", "rb"),
)More models