osborn 0.9.197 → 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
@@ -75,18 +75,17 @@ const DEFAULT_CONFIG = {
75
75
  },
76
76
  tts: {
77
77
  // ── Active ─────────────────────────────────────────────────────────────
78
- provider: 'openai',
79
- model: 'tts-1-hd',
80
- voice: 'fable',
81
- // Soniox TTS requires @livekit/agents-plugin-soniox@1.8.1 which needs agents@1.8.1.
82
- // Pending full LiveKit 1.4→1.8 upgrade. Swap back once agents are upgraded.
83
- // provider: 'soniox', model: 'tts-rt-v1', voice: 'Victoria'
84
- // WebSocket streaming, clean abort, speed control, ~$4–16/M. Needs agents@1.8.1.
78
+ provider: 'soniox',
79
+ model: 'tts-rt-v1',
80
+ voice: 'Victoria',
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).
85
83
  //
86
84
  // ── Alternatives ───────────────────────────────────────────────────────
85
+ // provider: 'openai', model: 'tts-1-hd', voice: 'fable'
86
+ // $30/M chars, ~500ms TTFB, HTTP streaming. 6 voices.
87
87
  // provider: 'openai', model: 'tts-1', voice: 'fable'
88
88
  // $15/M chars, slightly lower quality, same voices.
89
- // $15/M chars, slightly lower quality, same voices.
90
89
  // provider: 'deepgram', model: 'aura-2-asteria-en'
91
90
  // $15/M chars, ~100ms TTFB, WebSocket. Voices: asteria luna stella hera orion arcas perseus angus orpheus.
92
91
  // provider: 'rime', model: 'mistv3', voice: 'cove'
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.197",
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",