- FastAPI-Gateway mit REST-Endpunkten (chat/speak/transcribe/devices/sessions/config) - Geschichtete Konfiguration mit Profilen (local-dev/hybrid/cloud) via TOML + ENV - Registry-Pattern + einheitliche Route-Aufloesung (Default->Profil->ENV->Session->Request) - Device Router (strikt, Singleton) und Output-Lifecycle im Orchestrator - OpenRouter-Adapter (STT multipart/LLM/TTS) + lokale Provider-Stubs - Regelbasierte Pipeline (Cleaner/Spoken-Adapter/TTS-Normalizer) - 22 automatisierte Tests; Doku: README, BEDIENUNGSANLEITUNG, Architektur - Secrets ausschliesslich ueber Umgebung; .env und lokale config gitignored Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
12 lines
376 B
Python
12 lines
376 B
Python
from fastapi import APIRouter
|
|
from app.dependencies import get_audio_router
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/devices")
|
|
async def list_devices():
|
|
audio_router = get_audio_router()
|
|
return {
|
|
"inputs": [item.model_dump() for item in await audio_router.list_inputs()],
|
|
"outputs": [item.model_dump() for item in await audio_router.list_outputs()],
|
|
}
|