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 704c5de commit 90e6a45Copy full SHA for 90e6a45
speechmatics/cli.py
@@ -284,6 +284,11 @@ def get_transcription_config(
284
]:
285
config[option] = True if args.get(option) else config.get(option)
286
287
+ if args.get("end_of_utterance_silence_trigger") is not None:
288
+ config["conversation_config"] = {
289
+ "end_of_utterance_silence_trigger": args.get("end_of_utterance_silence_trigger")
290
+ }
291
+
292
if args.get("volume_threshold") is not None:
293
config["audio_filtering_config"] = {
294
"volume_threshold": args.get("volume_threshold")
0 commit comments