Skip to content

Commit 815f47a

Browse files
authored
Update real-time-transcription-csharp.md
add speechrecognitionmodelendpointID
1 parent b202d02 commit 815f47a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/communication-services/how-tos/call-automation/includes/real-time-transcription-csharp.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ var transcriptionOptions = new TranscriptionOptions(
3131
transportUri: new Uri(""),
3232
locale: "en-US",
3333
startTranscription: false,
34-
transcriptionTransport: TranscriptionTransport.Websocket
34+
transcriptionTransport: TranscriptionTransport.Websocket,
35+
//Only add the SpeechRecognitionModelEndpointId if you have a custom speech model you would like to use
36+
SpeechRecognitionModelEndpointId = "YourCustomSpeechRecognitionModelEndpointId"
3537
);
3638

3739
var connectCallOptions = new ConnectCallOptions(new RoomCallLocator("roomId"), callbackUri)

0 commit comments

Comments
 (0)