> ## 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.

# Fireworks AI Audio

> Fast STT with Fireworks AI

Speech-to-Text using Fireworks AI Whisper models.

## Setup

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
export FIREWORKS_API_KEY=your-key
```

## Usage

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

agent = AudioAgent(llm="fireworks_ai/whisper-v3-turbo")
text = agent.transcribe("audio.mp3")
print(text)
```

## Models

| Model                           | Description     |
| ------------------------------- | --------------- |
| `fireworks_ai/whisper-v3-turbo` | Fast Whisper v3 |
| `fireworks_ai/whisper-v3`       | Whisper v3      |

<Tip>
  Fireworks AI offers fast and affordable Whisper inference.
</Tip>
