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

# STT (Speech to Text)

> Call /audio/transcriptions with the Python SDK.

**Method**: `client.generate_transcription()`

```python theme={null}
result = client.generate_transcription({
    "model": "openai/gpt-4o-transcribe",
    "audio_b64": "base64-audio",
    "language": "en",
})

print(result)
```
