Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/speech-to-text/realtime/turn-detection.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ You can also use `ForceEndOfUtterance` with multi-channel diarization:
}
```

When this message is received, the server will send an [AddTranscript](../../api-ref/realtime-transcription-websocket#addtranscript) message, followed by an [EndOfUtterance](../../api-ref/realtime-transcription-websocket#endofutterance) message.
When this message is received, the server will send an [AddTranscript](../../api-ref/realtime-transcription-websocket#addtranscript) message, with a `forced` field to indicate it came from a ForceEndOfUtterance request, followed by an [EndOfUtterance](../../api-ref/realtime-transcription-websocket#endofutterance) message..

## Semantic turn detection

Expand Down
8 changes: 8 additions & 0 deletions spec/realtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,10 @@ components:
type: string
description: |
The channel identifier to which the audio belongs. This field is only seen in multichannel.
forced:
type: boolean
description: |
Indicates whether this message was triggered as a result of a ForceEndOfUtterance request.
required:
- message
- metadata
Expand All @@ -506,6 +510,10 @@ components:
type: string
description: |
The channel identifier to which the audio belongs. This field is only seen in multichannel.
forced:
type: boolean
description: |
Indicates whether this message was triggered as a result of a ForceEndOfUtterance request.
required:
- message
- metadata
Expand Down