Skip to content

Commit 90e6a45

Browse files
Pass argument through
1 parent 704c5de commit 90e6a45

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

speechmatics/cli.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,11 @@ def get_transcription_config(
284284
]:
285285
config[option] = True if args.get(option) else config.get(option)
286286

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+
287292
if args.get("volume_threshold") is not None:
288293
config["audio_filtering_config"] = {
289294
"volume_threshold": args.get("volume_threshold")

0 commit comments

Comments
 (0)