File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
articles/communication-services/how-tos/call-automation/includes Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ transcription_options = TranscriptionOptions(
21
21
locale = " en-US" ,
22
22
start_transcription = False ,
23
23
# Only add the SpeechRecognitionModelEndpointId if you have a custom speech model you would like to use
24
- SpeechRecognitionModelEndpointId = " YourCustomSpeechRecognitionModelEndpointId"
24
+ speech_recognition_model_endpoint_id = " YourCustomSpeechRecognitionModelEndpointId"
25
25
);
26
26
)
27
27
@@ -44,7 +44,7 @@ transcription_options = TranscriptionOptions(
44
44
locale = " en-US" ,
45
45
start_transcription = False ,
46
46
# Only add the SpeechRecognitionModelEndpointId if you have a custom speech model you would like to use
47
- SpeechRecognitionModelEndpointId = " YourCustomSpeechRecognitionModelEndpointId"
47
+ speech_recognition_model_endpoint_id = " YourCustomSpeechRecognitionModelEndpointId"
48
48
)
49
49
50
50
connect_result = client.connect_call(
@@ -175,7 +175,7 @@ await call_automation_client.get_call_connection(
175
175
operation_context = " UpdateTranscriptionContext" ,
176
176
locale = " en-au" ,
177
177
# Only add the SpeechRecognitionModelEndpointId if you have a custom speech model you would like to use
178
- SpeechRecognitionModelEndpointId = " YourCustomSpeechRecognitionModelEndpointId"
178
+ speech_recognition_model_endpoint_id = " YourCustomSpeechRecognitionModelEndpointId"
179
179
)
180
180
```
181
181
You can’t perform that action at this time.
0 commit comments