From c8b554ce76b6ddf95a05eadb62e68a02009aba2c Mon Sep 17 00:00:00 2001 From: marauder-actual Date: Fri, 29 May 2026 16:59:59 +0200 Subject: [PATCH] fix(calibration): fallback voices use madcat-tts cart IDs, not piper model names --- app/calibration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/calibration.py b/app/calibration.py index 3a51102..eb95d3d 100644 --- a/app/calibration.py +++ b/app/calibration.py @@ -76,8 +76,8 @@ log = logging.getLogger("chat-saiden.calibration") # FALLBACK_VOICES: used when no .pcart config is found. # These are the known-good piper voice IDs shipped with the TTS host. FALLBACK_VOICES: dict[str, str] = { - "en": "en_US-lessac-medium", - "pl": "pl_PL-gosia-medium", + "en": "bt7274-en", + "pl": "bt7274-pl", } # Populated at module load from the persona's cart.toml (see _load_persona_voices).