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

# Audio Agent • AI Agent SDK

> AudioAgent - A specialized agent class for audio processing using AI models.

# audio\_agent

<Badge color="blue">AI Agent</Badge>

AudioAgent - A specialized agent class for audio processing using AI models.
Provides Text-to-Speech (TTS) and Speech-to-Text (STT/Transcription) capabilities.

Follows the Agent() class patterns:

* Precedence Ladder: Instance > Config > Array > Dict > String > Bool > Default
* Lazy imports for LiteLLM (zero overhead until first use)
* Async-safe with both sync and async methods

## Import

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

## Classes

<CardGroup cols={2}>
  <Card title="AudioConfig" icon="brackets-curly" href="../classes/AudioConfig">
    Configuration for audio processing settings.
  </Card>

  <Card title="AudioAgent" icon="brackets-curly" href="../classes/AudioAgent">
    A specialized agent for audio processing using AI models.
  </Card>
</CardGroup>

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Agents Concept" icon="robot" href="/docs/concepts/agents" />

  <Card title="Single Agent Guide" icon="book-open" href="/docs/guides/single-agent" />

  <Card title="Multi-Agent Guide" icon="users" href="/docs/guides/multi-agent" />

  <Card title="Agent Configuration" icon="gear" href="/docs/configuration/agent-config" />

  <Card title="Auto Agents" icon="wand-magic-sparkles" href="/docs/features/autoagents" />
</CardGroup>
