diff options
Diffstat (limited to 'converter/config.py')
| -rw-r--r-- | converter/config.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/converter/config.py b/converter/config.py index 8e60250..d15efa5 100644 --- a/converter/config.py +++ b/converter/config.py @@ -8,20 +8,20 @@ MAX_RETRIES = 3 # Attempts per chunk request HEARTBEAT_INTERVAL_SECONDS = 30 # Print "still working" in console logs every N seconds # Words per TTS generation request (client-side chunking). -# The gradio and faster backends always chunk with this size +# The qwen and faster backends always chunk with this size # The audio.cpp backend chunks long text itself, so this is ignored # by default with that backend. Force chunking with --chunk CHUNK_SIZE = 250 # Default TTS backend. -# gradio: qwen-tts-demo -# faster: faster-qwen-tts # audiocpp: audiocpp_server +# qwen: qwen-tts-demo +# faster: faster-qwen-tts # The --backend CLI flag overrides this -BACKEND = "gradio" +BACKEND = "audiocpp" ############################################################################### -# BACKEND 1: qwen-tts-demo (gradio) options # +# BACKEND 1: qwen-tts-demo (qwen) options # ############################################################################### # There are different API URLs for CustomVoice and Base models so you can run both at once |
