Parakeet TDT 0.6B V3
Parakeet-tdt-0.6b-v3 is a 600-million-parameter multilingual automatic speech recognition (ASR) model designed for high-throughput speech-to-text transcription.
Model details
View repositoryparakeet-tdt-0.6b-v3 is a 600-million-parameter multilingual automatic speech recognition (ASR) model designed for high-throughput speech-to-text transcription. It extends the parakeet-tdt-0.6b-v2 model by expanding language support from English to 25 European languages. The model automatically detects the language of the audio and transcribes it without requiring additional prompting. It is part of a series of models that leverage the Granary multilingual corpus as their primary training dataset.
1import os
2import requests
3
4model_id = "<MODEL_ID>"
5
6response = requests.post(
7 f"https://model-{model_id}.api.baseten.co/environments/production/predict",
8 headers={"Authorization": f"Api-Key {os.environ['BASETEN_API_KEY']}"},
9 json={"audio_url": "https://example.com/audio.wav"},
10)
11response.raise_for_status()
12
13print(response.json())1{
2 "transcript": "Well, I don't wish to see it any more, observed Phoebe, turning away her eyes. It is certainly very like the old portrait.",
3 "text": "Well, I don't wish to see it any more, observed Phoebe, turning away her eyes. It is certainly very like the old portrait."
4}