Jamulix: Optimierungen übernehmen, lokale Voice-Modelle ignorieren
This commit is contained in:
parent
e99508a727
commit
91b9ef3374
12 changed files with 555 additions and 94 deletions
|
|
@ -141,6 +141,11 @@ class Settings(BaseSettings):
|
|||
piper_voice: str = "de_DE-thorsten-high" # Stimmmodell-Name (ohne .onnx) oder voller Pfad
|
||||
tts_sample_rate: int = 24000 # Ziel-Sample-Rate (das Gateway erwartet 24000 Hz)
|
||||
# --- Chatterbox-TTS (hohe Qualitaet + Voice-Cloning, eigener HTTP-Dienst) -
|
||||
# --- Cartesia TTS (Cloud, sehr niedrige Latenz) -------------------------
|
||||
cartesia_api_key: str = ""
|
||||
cartesia_voice_id: str = "" # UUID aus cartesia.ai/voices (Fallback)
|
||||
cartesia_tts_model: str = "sonic-turbo"
|
||||
cartesia_voices: str = "" # "lang:gender:uuid:name" je Zeile, # = Kommentar # sonic-2 | sonic-multilingual
|
||||
chatterbox_base_url: str = "http://127.0.0.1:9999"
|
||||
chatterbox_voice: str = "" # Pfad zu Referenz-WAV (Voice-Cloning) oder leer
|
||||
chatterbox_lang: str = "de"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue