osborn 0.9.196 → 0.9.197
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 +8 -8
- package/package.json +1 -1
package/dist/config.js
CHANGED
|
@@ -75,18 +75,18 @@ const DEFAULT_CONFIG = {
|
|
|
75
75
|
},
|
|
76
76
|
tts: {
|
|
77
77
|
// ── Active ─────────────────────────────────────────────────────────────
|
|
78
|
-
provider: '
|
|
79
|
-
model: 'tts-
|
|
80
|
-
voice: '
|
|
81
|
-
//
|
|
82
|
-
//
|
|
83
|
-
//
|
|
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.
|
|
84
85
|
//
|
|
85
86
|
// ── Alternatives ───────────────────────────────────────────────────────
|
|
86
|
-
// provider: 'openai', model: 'tts-1-hd', voice: 'fable'
|
|
87
|
-
// $30/M chars, ~500ms TTFB, HTTP streaming. 6 voices: alloy echo fable onyx nova shimmer.
|
|
88
87
|
// provider: 'openai', model: 'tts-1', voice: 'fable'
|
|
89
88
|
// $15/M chars, slightly lower quality, same voices.
|
|
89
|
+
// $15/M chars, slightly lower quality, same voices.
|
|
90
90
|
// provider: 'deepgram', model: 'aura-2-asteria-en'
|
|
91
91
|
// $15/M chars, ~100ms TTFB, WebSocket. Voices: asteria luna stella hera orion arcas perseus angus orpheus.
|
|
92
92
|
// provider: 'rime', model: 'mistv3', voice: 'cove'
|