Run Qwen3-TTS with CUDA graph acceleration on NVIDIA DGX Spark (ARM64 / SM 121 / CUDA 13) as an OpenAI-compatible TTS API server. - Dockerfile targeting nvidia/cuda:13.0.2-base-ubuntu24.04 with ARM64 cu130 PyTorch wheels - Patch for max-seq-len support to handle long reference audio without crashes - OpenWebUI + SillyTavern compatible API endpoints (/v1/models, /v1/audio/voices, /speakers) - Voice management: auto-generate voices.json from speaker reference audio files - Auto-transcription helper script for generating reference text from audio Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
290 B
Plaintext
22 lines
290 B
Plaintext
# Audio files (add your own voice references locally)
|
|
config/speakers/*.wav
|
|
config/speakers/*.mp3
|
|
config/speakers/originals_backup/
|
|
|
|
# Generated at runtime
|
|
config/voices.json
|
|
config/voices.json.bak
|
|
|
|
# Environment
|
|
.env
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# Editor backups
|
|
*~
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|