osborn 0.9.196 → 0.9.198

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/config.js CHANGED
@@ -78,13 +78,12 @@ const DEFAULT_CONFIG = {
78
78
  provider: 'soniox',
79
79
  model: 'tts-rt-v1',
80
80
  voice: 'Victoria',
81
- // WebSocket streaming — clean abort on interruption. Speed control 0.7–1.3x.
82
- // Est. ~$4–16/M chars vs OpenAI $30/M. Victoria = en-GB female, refined.
83
- // Also: Isla (en-GB, lively), Maya (en-US female). Needs SONIOX_API_KEY.
81
+ // WebSocket streaming, clean abort, speed control 0.7–1.3x, ~$4–16/M chars.
82
+ // Victoria = en-GB female, refined. Also: Isla (en-GB, lively), Maya (en-US female).
84
83
  //
85
84
  // ── Alternatives ───────────────────────────────────────────────────────
86
85
  // provider: 'openai', model: 'tts-1-hd', voice: 'fable'
87
- // $30/M chars, ~500ms TTFB, HTTP streaming. 6 voices: alloy echo fable onyx nova shimmer.
86
+ // $30/M chars, ~500ms TTFB, HTTP streaming. 6 voices.
88
87
  // provider: 'openai', model: 'tts-1', voice: 'fable'
89
88
  // $15/M chars, slightly lower quality, same voices.
90
89
  // provider: 'deepgram', model: 'aura-2-asteria-en'
package/dist/index.js CHANGED
@@ -4125,11 +4125,6 @@ async function main() {
4125
4125
  sendAgentTranscript(text, 'conv_item');
4126
4126
  }
4127
4127
  });
4128
- // FALLBACK: user_speech_committed
4129
- sess.on('user_speech_committed', (ev) => {
4130
- const transcript = ev.transcript || ev.text || '';
4131
- sendUserTranscript(transcript, 'committed');
4132
- });
4133
4128
  // Agent state tracking
4134
4129
  sess.on('agent_state_changed', (ev) => {
4135
4130
  agentState = ev.newState;
@@ -4,7 +4,6 @@
4
4
  */
5
5
  import * as deepgram from '@livekit/agents-plugin-deepgram';
6
6
  import * as openai from '@livekit/agents-plugin-openai';
7
- import * as silero from '@livekit/agents-plugin-silero';
8
7
  import * as soniox from '@livekit/agents-plugin-soniox';
9
8
  export interface STTConfig {
10
9
  provider: 'soniox' | 'deepgram' | 'deepgram-flux' | 'groq-whisper' | 'openai-whisper';
@@ -41,4 +40,4 @@ export declare function createTTS(config: TTSConfig): any;
41
40
  * - Split sentences when user pauses briefly mid-speech
42
41
  * - False triggers from ambient noise
43
42
  */
44
- export declare function createVAD(): Promise<silero.VAD>;
43
+ export declare function createVAD(): Promise<import("@livekit/agents").VAD>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osborn",
3
- "version": "0.9.196",
3
+ "version": "0.9.198",
4
4
  "description": "Voice AI coding assistant - local agent that connects to Osborn frontend",
5
5
  "type": "module",
6
6
  "bin": {
@@ -32,15 +32,15 @@
32
32
  "dependencies": {
33
33
  "@anthropic-ai/claude-agent-sdk": "^0.2.91",
34
34
  "@anthropic-ai/sdk": "^0.80.0",
35
- "@livekit/agents": "1.4.6",
36
- "@livekit/agents-plugin-deepgram": "1.4.6",
37
- "@livekit/agents-plugin-fishaudio": "1.4.6",
38
- "@livekit/agents-plugin-livekit": "1.4.6",
39
- "@livekit/agents-plugin-openai": "1.4.6",
40
- "@livekit/agents-plugin-rime": "1.4.6",
41
- "@livekit/agents-plugin-silero": "1.4.6",
42
- "@livekit/agents-plugin-soniox": "1.4.6",
43
- "@livekit/rtc-node": "0.13.29",
35
+ "@livekit/agents": "1.8.1",
36
+ "@livekit/agents-plugin-deepgram": "1.8.1",
37
+ "@livekit/agents-plugin-fishaudio": "1.8.1",
38
+ "@livekit/agents-plugin-livekit": "1.8.1",
39
+ "@livekit/agents-plugin-openai": "1.8.1",
40
+ "@livekit/agents-plugin-rime": "1.8.1",
41
+ "@livekit/agents-plugin-silero": "1.8.1",
42
+ "@livekit/agents-plugin-soniox": "1.8.1",
43
+ "@livekit/rtc-node": "0.13.35",
44
44
  "@modelcontextprotocol/sdk": "^1.29.0",
45
45
  "@smithery/api": "^0.48.0",
46
46
  "@types/diff": "^8.0.0",