omnius 1.0.606 → 1.0.607
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/README.md +8 -1
- package/assets/voice-defaults/Announcer_testchamber03.wav +0 -0
- package/assets/voicebox/chatterbox-generation-serialization.patch +1014 -0
- package/dist/index.js +4177 -2856
- package/docs/DISCOVERY.json +76 -0
- package/docs/DISCOVERY.md +2 -0
- package/docs/reference/rest-api.md +11 -1
- package/docs/reference/slash-commands.md +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -366,7 +366,8 @@ Context-window dumps are written for main agents, sub-agents, internal runners,
|
|
|
366
366
|
| Method | Path | Purpose |
|
|
367
367
|
| --- | --- | --- |
|
|
368
368
|
| `GET` | `/v1/voice/state` | Voice runtime status |
|
|
369
|
-
| `
|
|
369
|
+
| `POST` | `/v1/voice/start` · `/v1/voice/stop` | Enable/warm voice · pause voice input |
|
|
370
|
+
| `GET`/`POST` | `/v1/voice/models` · `/v1/voice/models/switch` | List · switch and enable an exact TTS model |
|
|
370
371
|
| `GET`/`POST` | `/v1/voice/supertonic-settings` | Read · update voice tuning |
|
|
371
372
|
| `GET`/`POST` | `/v1/voice/asr-models` · `/v1/voice/asr-models/switch` | List · switch ASR model |
|
|
372
373
|
| `POST` | `/v1/voice/tts` · `/v1/audio/speech` | Synthesize speech (+ OpenAI alias) |
|
|
@@ -379,6 +380,12 @@ Context-window dumps are written for main agents, sub-agents, internal runners,
|
|
|
379
380
|
| `GET` | `/v1/voicechat/ws` | WebSocket upgrade for full-duplex voicechat |
|
|
380
381
|
| `POST` | `/v1/vision/describe` | Vision describe placeholder |
|
|
381
382
|
|
|
383
|
+
TTS requests auto-warm the daemon and never silently fall back to a different
|
|
384
|
+
voice. The built-in registry includes GLaDOS, Overwatch, and the packaged
|
|
385
|
+
`luxtts:announcer-testchamber03` clone source. Voicebox defaults to its stable
|
|
386
|
+
sub-model set; use `OMNIUS_VOICEBOX_MODELS=all` for the full suite or a
|
|
387
|
+
comma-separated list of `voicebox_*` IDs for an explicit subset.
|
|
388
|
+
|
|
382
389
|
### Generative media
|
|
383
390
|
|
|
384
391
|
Backed by the unified `~/.omnius` store and shared venvs (see [Shared Media Dependencies](#shared-media-dependencies)). Outputs land in the global gallery at `~/.omnius/media/{images,videos,audio,music}`.
|
|
Binary file
|