2026-06-24 22:01:38 +02:00
|
|
|
import httpx
|
2026-06-17 01:48:56 +02:00
|
|
|
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()
|
|
|
|
|
|
|
|
|
|
|
2026-06-24 22:01:38 +02:00
|
|
|
async def _chatterbox_reachable() -> bool:
|
|
|
|
|
try:
|
|
|
|
|
async with httpx.AsyncClient(timeout=1.5) as client:
|
|
|
|
|
r = await client.get(f"{settings.chatterbox_base_url.rstrip('/')}/status")
|
|
|
|
|
return r.status_code < 500
|
|
|
|
|
except Exception:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def _cartesia_available() -> bool:
|
|
|
|
|
key = settings.cartesia_api_key.strip()
|
|
|
|
|
voice_id = settings.cartesia_voice_id.strip()
|
|
|
|
|
if not key or not voice_id:
|
|
|
|
|
return False
|
|
|
|
|
try:
|
|
|
|
|
async with httpx.AsyncClient(timeout=5.0) as client:
|
|
|
|
|
r = await client.get(
|
|
|
|
|
"https://api.cartesia.ai/voices",
|
|
|
|
|
headers={"X-API-Key": key, "Cartesia-Version": "2024-06-10"},
|
|
|
|
|
)
|
|
|
|
|
return r.status_code < 400
|
|
|
|
|
except Exception:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def _openrouter_tts_available() -> bool:
|
|
|
|
|
"""Prüft ob das konfigurierte TTS-Modell auf OpenRouter via /audio/speech erreichbar ist."""
|
|
|
|
|
key = settings.openrouter_api_key.strip()
|
|
|
|
|
model = settings.openrouter_tts_model.strip()
|
|
|
|
|
if not key or not model:
|
|
|
|
|
return False
|
|
|
|
|
try:
|
|
|
|
|
async with httpx.AsyncClient(timeout=5.0) as client:
|
|
|
|
|
r = await client.post(
|
|
|
|
|
"https://openrouter.ai/api/v1/audio/speech",
|
|
|
|
|
headers={"Authorization": f"Bearer {key}", "Content-Type": "application/json"},
|
|
|
|
|
json={"model": model, "input": "Test", "voice": settings.openrouter_tts_voice or "alloy",
|
|
|
|
|
"response_format": "mp3"},
|
|
|
|
|
)
|
|
|
|
|
# 200 = Audio OK, 4xx mit "does not exist" = Modell fehlt
|
|
|
|
|
if r.status_code == 200:
|
|
|
|
|
return True
|
|
|
|
|
body = r.text
|
|
|
|
|
return "does not exist" not in body and r.status_code < 500
|
|
|
|
|
except Exception:
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2026-06-17 01:48:56 +02:00
|
|
|
@router.get("/config")
|
|
|
|
|
async def get_config():
|
2026-06-24 22:01:38 +02:00
|
|
|
"""Zeigt aktives Profil, aufgeloeste Default-Route und verfuegbare Bausteine."""
|
2026-06-17 01:48:56 +02:00
|
|
|
route = resolve_route()
|
|
|
|
|
audio_router = get_audio_router()
|
2026-06-24 22:01:38 +02:00
|
|
|
chatterbox_ok, openrouter_tts_ok, cartesia_ok = await _chatterbox_reachable(), await _openrouter_tts_available(), await _cartesia_available()
|
2026-06-17 01:48:56 +02:00
|
|
|
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()],
|
2026-06-24 22:01:38 +02:00
|
|
|
"chatterbox_reachable": chatterbox_ok,
|
|
|
|
|
"openrouter_tts_available": openrouter_tts_ok,
|
|
|
|
|
"cartesia_available": cartesia_ok,
|
2026-06-17 01:48:56 +02:00
|
|
|
},
|
|
|
|
|
"secrets": {
|
|
|
|
|
"openrouter_api_key_set": bool(settings.openrouter_api_key.strip()),
|
|
|
|
|
},
|
|
|
|
|
}
|