Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/speech-to-text/features/audio-events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ Starting message example for a music event:
"start_time": 4.2,
"confidence": 0.8,
"type": "music"
}
},
"channel": "London"
}
```

Expand All @@ -241,9 +242,16 @@ Ending message example for the music event:
"event": {
"end_time": 10.2,
"type": "music"
}
},
"channel": "London"
}
```

:::info
The `channel` fields are only returned when [channel](../../speech-to-text/realtime/realtime-diarization#channel-diarization) or [`channel and speaker`](../../speech-to-text/realtime/realtime-diarization#channel-and-speaker-diarization) diarization is enabled.
These fields indicate which channel the audio event comes from.
:::

</TabItem>
</Tabs>

Expand Down