feat: voice-service von lehrer nach core verschoben, Pipeline erweitert (voice, BQAS, embedding, night-scheduler)

This commit is contained in:
Benjamin Boenisch
2026-02-15 13:26:06 +01:00
parent a7e4500ea6
commit 1089c73b46
59 changed files with 12921 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
"""
Voice Service API Routes
"""
from api.sessions import router as sessions_router
from api.tasks import router as tasks_router
from api.streaming import router as streaming_router
__all__ = [
"sessions_router",
"tasks_router",
"streaming_router",
]