osborn 0.9.200 → 0.9.201

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 CHANGED
@@ -3675,8 +3675,8 @@ async function main() {
3675
3675
  // a full 3s window to keep talking before deciding it was false and
3676
3676
  // resuming. Other two knobs left at SDK defaults.
3677
3677
  interruption: {
3678
- minDuration: 800, // default 500 — require 800ms sustained speech (tightened from 1500; Soniox semantic STT reduces false positives)
3679
- minWords: 1, // default 0 — require ≥1 word ("stop", "wait", "no" now count)
3678
+ minDuration: 1100, // default 500 — 1.1s sustained speech; 800 was triggering on mid-sentence continuations
3679
+ minWords: 2, // default 0 — require ≥2 words; single "um"/"uh" resumptions no longer gate as interruption
3680
3680
  falseInterruptionTimeout: 3500, // default 2000 — 3.5s false-interrupt window
3681
3681
  // resumeFalseInterruption: true, // default true (unchanged)
3682
3682
  // discardAudioIfUninterruptible: true,// default true (unchanged)
package/dist/voice-io.js CHANGED
@@ -22,8 +22,8 @@ export function createSTT(config) {
22
22
  return new soniox.STT({
23
23
  model: (config.model || 'stt-rt-v4'),
24
24
  languageHints: config.language ? [config.language] : ['en'],
25
- maxEndpointDelayMs: 1200, // give model room to decide on mid-thought pauses
26
- endpointLatencyAdjustmentLevel: 3, // max aggression — semantic model handles accuracy
25
+ maxEndpointDelayMs: 2500, // 2.5s runway — long enough for thinking pauses ("um", mid-clause hesitations)
26
+ endpointLatencyAdjustmentLevel: 2, // balanced — semantic model distinguishes pause vs end; 3 was cutting off long turns
27
27
  context: {
28
28
  terms: ['Claude', 'TypeScript', 'LiveKit', 'Deepgram', 'npm', 'Railway', 'Fly.io'],
29
29
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osborn",
3
- "version": "0.9.200",
3
+ "version": "0.9.201",
4
4
  "description": "Voice AI coding assistant - local agent that connects to Osborn frontend",
5
5
  "type": "module",
6
6
  "bin": {