diff options
Diffstat (limited to 'converter/config.py')
| -rw-r--r-- | converter/config.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/converter/config.py b/converter/config.py index 4cb5ab8..ed49f12 100644 --- a/converter/config.py +++ b/converter/config.py @@ -8,8 +8,13 @@ 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. -# Note that qwen-tts-demo does no chunking at all, but faster-qwen-tts and +# Note that qwen-tts-demo does no chunking at all, but faster-qwen3-tts and # audio.cpp may do chunking as well, so you may be needlessly double-chunking. +# This is the only size limit: there is no hard ceiling. However, servers +# silently truncate audio when a single generation runs too long (roughly +# ~2.5 min on the faster backend's static KV cache, ~11 min on the Gradio +# demo) without reporting an error, so raising this is at your own risk. +# The client-side truncation check still catches and retries gross cases. CHUNK_SIZE = 250 # Default TTS backend. @@ -54,5 +59,5 @@ FASTER_VOICE = "default" AUDIOCPP_API_URL = "http://127.0.0.1:8080" # audio.cpp audiocpp_server # Model ids in the audio.cpp server.json config. -AUDIOCPP_MODEL_ID = "qwen"https://github.com/0xShug0/audio.cpp +AUDIOCPP_MODEL_ID = "qwen" AUDIOCPP_CLONE_MODEL_ID = "qwen-clone" |
