tts: first apply of Chatterbox stack; predefined voices from the image, not the unseeded PVC
Viktor's tour-guide redo (tripit#26): 87702bdc committed this stack with
[ci skip] so it was never applied — prod tripit has been pointing at a
nonexistent chatterbox-tts service since. This commit triggers the apply
and fixes the voices path: config pointed predefined_voices_path at the
NFS PVC (/data/voices), which nobody can seed without NFS-host shell
access and which would leave /v1/audio/voices empty (it gates readiness).
Use the 28 voices bundled in the image at /app/voices instead; /data
keeps reference audio (future cloning) and the HF model cache.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
7a1cc64898
commit
4a8c4f9a14
1 changed files with 8 additions and 2 deletions
|
|
@ -73,8 +73,14 @@ locals {
|
|||
repo_id = "chatterbox-multilingual"
|
||||
}
|
||||
tts_engine = {
|
||||
device = "cuda"
|
||||
predefined_voices_path = "/data/voices"
|
||||
device = "cuda"
|
||||
# Predefined voices come from the IMAGE's bundled set (28 reference WAVs
|
||||
# under the devnen server's /app/voices) rather than the NFS PVC: nobody
|
||||
# can seed /data/voices without NFS-host shell access, and an empty
|
||||
# predefined dir means /v1/audio/voices serves nothing (it gates the
|
||||
# readiness probe). tripit's Voice catalog (tripit#30) names a subset of
|
||||
# these stems. /data keeps reference_audio (future cloning) + HF cache.
|
||||
predefined_voices_path = "/app/voices"
|
||||
reference_audio_path = "/data/reference_audio"
|
||||
}
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue