fix(calibration): fallback voices use madcat-tts cart IDs, not piper model names

This commit is contained in:
marauder-actual
2026-05-29 16:59:59 +02:00
parent ae384fe618
commit c8b554ce76
+2 -2
View File
@@ -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).