You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#self.add_argument("--voice-min-words", type=int, default=4, help="the minimum number of words the TTS should wait to speak")
108
108
109
109
if'asr'inextras:
110
-
self.add_argument("--asr", type=str, default="riva", help="name or path of the ASR model to use (e.g. 'riva', 'none', 'disabled')")
110
+
self.add_argument("--asr", type=str, default=None, help="name or path of the ASR model to use (e.g. 'riva', 'none', 'disabled')")
111
111
self.add_argument("--asr-confidence", type=float, default=-2.5, help="minimum ASR confidence (only applies to 'final' transcripts)")
112
112
self.add_argument("--asr-silence", type=float, default=-1.0, help="audio with RMS equal to or below this amount will be considered silent (negative will disable silence detection)")
113
113
self.add_argument("--asr-chunk", type=int, default=1600, help="the number of audio samples to buffer as input to ASR")
0 commit comments