- 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>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from fastapi import APIRouter
|
|
|
|
from app.config import settings, active_profile
|
|
from app.dependencies import (
|
|
resolve_route,
|
|
get_audio_router,
|
|
STT_REGISTRY,
|
|
LLM_REGISTRY,
|
|
TTS_REGISTRY,
|
|
)
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/config")
|
|
async def get_config():
|
|
"""Zeigt aktives Profil, aufgeloeste Default-Route und verfuegbare Bausteine.
|
|
|
|
Bewusst OHNE Secrets - API-Keys werden nur als 'gesetzt/nicht gesetzt' gemeldet.
|
|
"""
|
|
route = resolve_route()
|
|
audio_router = get_audio_router()
|
|
return {
|
|
"profile": active_profile(),
|
|
"app_env": settings.app_env,
|
|
"default_route": route.as_dict(),
|
|
"available": {
|
|
"stt_providers": sorted(STT_REGISTRY),
|
|
"llm_providers": sorted(LLM_REGISTRY),
|
|
"tts_providers": sorted(TTS_REGISTRY),
|
|
"input_endpoints": [c.model_dump() for c in await audio_router.list_inputs()],
|
|
"output_endpoints": [c.model_dump() for c in await audio_router.list_outputs()],
|
|
},
|
|
"secrets": {
|
|
"openrouter_api_key_set": bool(settings.openrouter_api_key.strip()),
|
|
},
|
|
}
|