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
/// Amount of audio to include before speech starts (in milliseconds).
43
-
publicvarprefixPaddingMs:Int
44
-
/// Duration of silence to detect speech stop (in milliseconds).
45
-
publicvarsilenceDurationMs:Int
66
+
/// Used only for `server_vad` mode. Activation threshold for VAD (0.0 to 1.0).
67
+
publicvarthreshold:Double?
68
+
/// Whether or not to automatically interrupt any ongoing response with output to the default conversation (i.e. `conversation` of `auto`) when a VAD start event occurs.
69
+
publicvarinterruptResponse:Bool?
70
+
/// Used only for `server_vad` mode. Amount of audio to include before speech starts (in milliseconds).
71
+
publicvarprefixPaddingMs:Int?
72
+
/// Used only for `server_vad` mode. Duration of silence to detect speech stop (in milliseconds).
73
+
publicvarsilenceDurationMs:Int?
46
74
/// Whether or not to automatically generate a response when VAD is enabled.
47
75
publicvarcreateResponse:Bool
76
+
/// Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.
0 commit comments