> ## Documentation Index
> Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Groq Audio

> Ultra-fast Whisper STT

## Usage

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import AudioAgent

agent = AudioAgent(llm="groq/whisper-large-v3")
text = agent.listen("audio.mp3")
print(text)
```

## Models

| Model                             | Speed             |
| --------------------------------- | ----------------- |
| `groq/whisper-large-v3`           | Fast              |
| `groq/whisper-large-v3-turbo`     | Faster            |
| `groq/distil-whisper-large-v3-en` | Fastest (English) |

<Tip>Groq is 10x faster than OpenAI Whisper.</Tip>
