-
Notifications
You must be signed in to change notification settings - Fork 0
Add voice cloning support via Base model #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
7e8ace8
c9bad40
2624e89
54e9e56
3da5e3a
f616652
2b5fcf1
568f29b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,255 @@ | ||||||||
| name: CI | ||||||||
|
|
||||||||
| on: | ||||||||
| push: | ||||||||
| pull_request: | ||||||||
|
|
||||||||
| jobs: | ||||||||
| test-api: | ||||||||
| runs-on: ubuntu-latest | ||||||||
| timeout-minutes: 60 | ||||||||
|
|
||||||||
| env: | ||||||||
| QWEN_TTS_DEVICE: cpu | ||||||||
| QWEN_TTS_DTYPE: float32 | ||||||||
| QWEN_TTS_ATTN: "" | ||||||||
|
|
||||||||
| steps: | ||||||||
| - uses: actions/checkout@v4 | ||||||||
|
|
||||||||
| - uses: astral-sh/setup-uv@v6 | ||||||||
| with: | ||||||||
| version: "latest" | ||||||||
|
||||||||
| version: "latest" | |
| version: "latest" | |
| python-version: "3.12" |
Copilot
AI
Jan 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI installs dependencies with uv sync --project python without --frozen (and without excluding dev deps). For reproducible builds and faster CI, consider using uv sync --project python --frozen --no-dev so the workflow fails if uv.lock/pyproject.toml drift and avoids installing unnecessary packages.
| run: uv sync --project python | |
| run: uv sync --project python --frozen --no-dev |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow now runs on every push/PR (no branch or path filtering). Given it downloads multi-GB model weights and does long-running inference, it should be scoped (e.g., to
mainand/orpython/**) to avoid expensive CI runs on unrelated changes.