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

# Anam

> Python API reference for the anam avatars plugin.

<Card title="Usage guide" icon="book" href="/plugins/avatar/anam" horizontal>
  Setup, environment variables, and Python/JavaScript/Go usage examples.
</Card>

## AnamAvatar

Avatar integration for the Anam provider.

Configures an Anam avatar session, resolving credentials and avatar
settings from explicit arguments or environment variables.

### Constructor

```python theme={null}
AnamAvatar(*, api_key: 'Optional[str]' = None, avatar_id: 'str' = '', persona_name: 'Optional[str]' = None, voice_id: 'Optional[str]' = None) -> 'None'
```

<ParamField path="api_key" type="Optional[str]">
  Anam API key. Falls back to the `ANAM_API_KEY` environment variable when not provided.
</ParamField>

<ParamField path="avatar_id" type="str" default="">
  Identifier of the avatar to use. Falls back to the `ANAM_AVATAR_ID` environment variable, then to a built-in default avatar when empty.
</ParamField>

<ParamField path="persona_name" type="Optional[str]">
  Optional persona name to apply to the avatar.
</ParamField>

<ParamField path="voice_id" type="Optional[str]">
  Optional voice identifier for the avatar.
</ParamField>
