Background Noise
| Field | Type | Description |
|---|---|---|
background_noise_config | object | null | Ambient noise mixed into the bot's outbound audio. null = feature off. |
Structure:
json
{
"enabled": true,
"source": "custom",
"sound": "custom",
"volume": 0.4,
"asset": {
"filename": "office-room-tone.wav",
"gcs_path": "gs://vaanii-assets/background-noise/office-room-tone.wav"
}
}| Sub-field | Type | Description |
|---|---|---|
enabled | boolean | Turn the ambience on. Default: false. |
source | string | builtin (default) — pre-recorded library; custom — your own uploaded clip. |
sound | string | office (default) · crowd · cafe · custom. custom is only valid when source is custom. |
volume | float | Mixing volume 0.0 – 1.0. Default: 0.4. |
asset | object | null | The uploaded clip {filename, gcs_path, ...}; required when source is custom. |