v0.13.0:4 - redaction gateway, embeddings proxy, expanded audio API
- Add redaction gateway (redaction_gateway.py, redaction/ scrub + tests) - Add embeddings proxy and spark_embed service (Dockerfile + main.py) - Expand audio_proxy with speaker-aware handling; deep_health/health/server updates - Package: configureSparks action + sparkConfig model updates, manifest/main wiring - Docs: AUDIO_API, EMBEDDINGS, REDACTION_GATEWAY; HANDOFF and runbook/known-issues refresh
This commit is contained in:
+20
-6
@@ -16,9 +16,16 @@ export const main = sdk.setupMain(async ({ effects }) => {
|
||||
parakeet_host: '',
|
||||
parakeet_user: '',
|
||||
parakeet_container: '',
|
||||
magpie_host: '',
|
||||
magpie_user: '',
|
||||
magpie_container: '',
|
||||
kokoro_host: '',
|
||||
kokoro_user: '',
|
||||
kokoro_container: '',
|
||||
embed_host: '',
|
||||
embed_user: '',
|
||||
embed_container: '',
|
||||
qdrant_host: '',
|
||||
qdrant_user: '',
|
||||
qdrant_container: '',
|
||||
qdrant_collection: '',
|
||||
open_webui_url: '',
|
||||
ngc_api_key: '',
|
||||
}
|
||||
@@ -45,9 +52,16 @@ export const main = sdk.setupMain(async ({ effects }) => {
|
||||
PARAKEET_HOST: cfg.parakeet_host,
|
||||
PARAKEET_USER: cfg.parakeet_user,
|
||||
PARAKEET_CONTAINER: cfg.parakeet_container,
|
||||
MAGPIE_HOST: cfg.magpie_host,
|
||||
MAGPIE_USER: cfg.magpie_user,
|
||||
MAGPIE_CONTAINER: cfg.magpie_container,
|
||||
KOKORO_HOST: cfg.kokoro_host,
|
||||
KOKORO_USER: cfg.kokoro_user,
|
||||
KOKORO_CONTAINER: cfg.kokoro_container,
|
||||
EMBED_HOST: cfg.embed_host,
|
||||
EMBED_USER: cfg.embed_user,
|
||||
EMBED_CONTAINER: cfg.embed_container,
|
||||
QDRANT_HOST: cfg.qdrant_host,
|
||||
QDRANT_USER: cfg.qdrant_user,
|
||||
QDRANT_CONTAINER: cfg.qdrant_container,
|
||||
QDRANT_COLLECTION: cfg.qdrant_collection,
|
||||
MODELS_OVERRIDES: '/data/models-overrides.yaml',
|
||||
SERVICES_OVERRIDES: '/data/services-overrides.yaml',
|
||||
CONNECTIVITY_LOG: '/data/connectivity.json',
|
||||
|
||||
Reference in New Issue
Block a user