mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-20 15:20:39 -07:00
Integrate Alibaba's CosyVoice2-0.5B and Fun-CosyVoice3-0.5B as a new TTS engine supporting 9 languages, zero-shot voice cloning, and instruct control (emotions, speed, volume, dialects). The CosyVoice source is cloned at setup time into backend/vendors/ since no PyPI package exists. A modelscope→HuggingFace shim redirects model downloads to the public HF repos, and a lightweight pylogger shim avoids pulling in pytorch-lightning as a transitive dependency. Backend: cosyvoice_backend.py, __init__.py registry, models.py regex Frontend: engine selector, language map, Zod schema, model descriptions Infra: requirements.txt, justfile, release.yml, Dockerfile, PyInstaller
69 lines
674 B
Plaintext
69 lines
674 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
bun.lockb
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.prompt
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
target/
|
|
*.app
|
|
*.dmg
|
|
*.exe
|
|
*.msi
|
|
*.deb
|
|
*.AppImage
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data (user-generated)
|
|
data/
|
|
!data/.gitkeep
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Generated files
|
|
app/openapi.json
|
|
tauri/src-tauri/binaries/*
|
|
tauri/src-tauri/gen/Assets.car
|
|
tauri/src-tauri/gen/voicebox.icns
|
|
tauri/src-tauri/gen/partial.plist
|
|
|
|
# PyInstaller
|
|
*.spec
|
|
|
|
# Windows artifacts
|
|
nul
|
|
|
|
# Vendored source clones (fetched at setup time)
|
|
backend/vendors/
|
|
|
|
# Temporary
|
|
tmp/
|
|
temp/
|
|
*.tmp
|