osborn 0.9.71 → 0.9.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2170,9 +2170,9 @@ async function main() {
|
|
|
2170
2170
|
// a full 3s window to keep talking before deciding it was false and
|
|
2171
2171
|
// resuming. Other two knobs left at SDK defaults.
|
|
2172
2172
|
interruption: {
|
|
2173
|
-
minDuration:
|
|
2174
|
-
minWords:
|
|
2175
|
-
falseInterruptionTimeout:
|
|
2173
|
+
minDuration: 1500, // default 500 — require 1.5s sustained speech (faster barge-in than 2500)
|
|
2174
|
+
minWords: 2, // default 0 — require ≥2 transcript words
|
|
2175
|
+
falseInterruptionTimeout: 3500, // default 2000 — 3.5s false-interrupt window (belt-and-suspenders since minDuration was loosened)
|
|
2176
2176
|
// resumeFalseInterruption: true, // default true (unchanged)
|
|
2177
2177
|
// discardAudioIfUninterruptible: true,// default true (unchanged)
|
|
2178
2178
|
},
|