We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdf13ad commit 9360882Copy full SHA for 9360882
livekit-plugins/livekit-plugins-azure/livekit/plugins/azure/stt.py
@@ -410,7 +410,9 @@ def _create_speech_recognizer(
410
"punctuation", "explicit", speechsdk.ServicePropertyChannel.UriQueryParameter
411
)
412
if config.true_text_post_processing:
413
- speech_config.set_property(speechsdk.enums.PropertyId.PostProcessingOption, "TrueText")
+ speech_config.set_property(
414
+ speechsdk.enums.PropertyId.SpeechServiceResponse_PostProcessingOption, "TrueText"
415
+ )
416
417
kwargs: dict[str, Any] = {}
418
if config.language and len(config.language) > 1:
0 commit comments