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()),
|
||
|
|
},
|
||
|
|
}
|