We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b202d02 commit 815f47aCopy full SHA for 815f47a
articles/communication-services/how-tos/call-automation/includes/real-time-transcription-csharp.md
@@ -31,7 +31,9 @@ var transcriptionOptions = new TranscriptionOptions(
31
transportUri: new Uri(""),
32
locale: "en-US",
33
startTranscription: false,
34
- transcriptionTransport: TranscriptionTransport.Websocket
+ transcriptionTransport: TranscriptionTransport.Websocket,
35
+ //Only add the SpeechRecognitionModelEndpointId if you have a custom speech model you would like to use
36
+ SpeechRecognitionModelEndpointId = "YourCustomSpeechRecognitionModelEndpointId"
37
);
38
39
var connectCallOptions = new ConnectCallOptions(new RoomCallLocator("roomId"), callbackUri)
0 commit comments