omnius 1.0.631 → 1.0.634
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 +16 -4
- package/dist/index.js +17637 -14428
- package/dist/memory-maintenance-worker.js +116 -0
- package/dist/postinstall-daemon.cjs +22 -11
- package/dist/scripts/audio-clap-semantic-worker.py +171 -0
- package/dist/scripts/audio-speaker-embedding-worker.py +259 -0
- package/dist/scripts/audio-yamnet-tensorrt-worker.py +69 -21
- package/dist/scripts/embed-image.py +34 -0
- package/dist/scripts/embed-text.py +26 -0
- package/dist/update-worker.js +36 -0
- package/docs/DISCOVERY.json +1287 -9
- package/docs/DISCOVERY.md +14 -2
- package/docs/reference/rest-api.md +13 -1
- package/docs/rest/INDEX.md +1 -1
- package/docs/rest/REST-DOCS-MANIFEST.json +1 -1
- package/docs/rest/endpoints/memory.md +54 -0
- package/docs/rest/endpoints/voice-vision.md +127 -3
- package/npm-shrinkwrap.json +14 -14
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -484,6 +484,8 @@ The MCP equivalent uses a transport such as
|
|
|
484
484
|
| `GET` | `/v1/memory/entities` | List extracted memory entities |
|
|
485
485
|
| `POST` | `/v1/memory/jobs/run` | Run a named memory-maintenance job |
|
|
486
486
|
| `POST` | `/v1/memory/feedback` | Record relevance or quality feedback for a memory item |
|
|
487
|
+
| `POST` | `/v1/memory/speaker-identities/enroll` | Admin-only, explicit-consent speaker exemplar enrollment in one exact vector space |
|
|
488
|
+
| `POST` | `/v1/memory/speaker-identities/match` | Admin-only provisional speaker candidate matching without durable assignment |
|
|
487
489
|
| `GET` | `/v1/sessions` | List task sessions |
|
|
488
490
|
| `GET` | `/v1/sessions/{id}` | Get session history |
|
|
489
491
|
| `GET` | `/v1/context` | Current context snapshot |
|
|
@@ -538,9 +540,17 @@ the store, `OMNIUS_DISABLE_CONTEXT_WINDOW_DUMPS=1` to disable it, and
|
|
|
538
540
|
| `GET` | `/v1/audio/classify/health` | Jetson CUDA/TensorRT YAMNet readiness |
|
|
539
541
|
| `POST` | `/v1/audio/classify/setup` | Provision and warm the pinned JetPack TensorRT YAMNet runtime |
|
|
540
542
|
| `POST` | `/v1/audio/classify` | Direct-tool compatible CUDA audio classification |
|
|
541
|
-
| `GET` | `/v1/
|
|
542
|
-
| `POST` | `/v1/
|
|
543
|
-
| `POST` | `/v1/
|
|
543
|
+
| `GET` | `/v1/audio/embed/health` | Role-typed embedding readiness (`?kind=acoustic|speaker|semantic`) |
|
|
544
|
+
| `POST` | `/v1/audio/embed/setup` | Provision/warm one role-typed embedding runtime (admin; `?kind=...`) |
|
|
545
|
+
| `POST` | `/v1/audio/embed` | Managed role-typed audio embedding (`?kind=...`) |
|
|
546
|
+
| `GET` | `/v1/audio/diarization/live/readiness` | Non-mutating live/session-local diarization readiness (currently unavailable) |
|
|
547
|
+
| `POST` | `/v1/audio/diarization/live/setup` | Verify/register local Sortformer snapshot (admin; not inference-ready) |
|
|
548
|
+
| `POST` | `/v1/audio/diarization/live` | Reserved managed live speaker-turn contract (currently typed 503) |
|
|
549
|
+
| `POST` | `/v1/audio/diarization/live/cancel` | Cancel managed live diarization when a worker is available |
|
|
550
|
+
| `GET` | `/v1/audio/diarization/reconcile/readiness` | Non-mutating offline/dream reconciliation readiness (currently unavailable) |
|
|
551
|
+
| `POST` | `/v1/audio/diarization/reconcile/setup` | Verify/register local pyannote snapshot (admin; not inference-ready) |
|
|
552
|
+
| `POST` | `/v1/audio/diarization/reconcile` | Reserved managed reconciliation contract (currently typed 503) |
|
|
553
|
+
| `POST` | `/v1/audio/diarization/reconcile/cancel` | Cancel managed reconciliation when a worker is available |
|
|
544
554
|
| `POST` | `/v1/voice/transcribe` | Transcribe audio |
|
|
545
555
|
| `POST` | `/v1/voice/asr` | Legacy transcription alias |
|
|
546
556
|
| `POST` | `/v1/audio/transcriptions` | OpenAI-compatible transcription alias |
|
|
@@ -556,7 +566,9 @@ the store, `OMNIUS_DISABLE_CONTEXT_WINDOW_DUMPS=1` to disable it, and
|
|
|
556
566
|
| `GET` | `/v1/voicechat/ws` | WebSocket upgrade for full-duplex voicechat |
|
|
557
567
|
| `POST` | `/v1/vision/describe` | Vision describe placeholder |
|
|
558
568
|
| `POST` | `/v1/vision/embed` | Create a vision embedding from media |
|
|
559
|
-
| `
|
|
569
|
+
| `GET` | `/v1/ocr/readiness` | Non-mutating advanced-OCR dependency and backend readiness |
|
|
570
|
+
| `POST` | `/v1/ocr/setup` | Create and verify the isolated OCR venv (admin scope) |
|
|
571
|
+
| `POST` | `/v1/ocr/advanced` | Agent-equivalent managed advanced OCR (alias of `/v1/tools/ocr_image_advanced/call`) |
|
|
560
572
|
|
|
561
573
|
`POST /v1/voice/tts` and `/v1/audio/speech` automatically warm the daemon.
|
|
562
574
|
An explicit model must render exactly or the request fails; Omnius does not
|