Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v7.6.0
- uses: release-drafter/release-drafter@v7.7.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion agent_cli/core/vad.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _get_model_path() -> Path:
SILERO_VAD_CACHE.parent.mkdir(parents=True, exist_ok=True)

# Download with progress
urllib.request.urlretrieve(SILERO_VAD_URL, SILERO_VAD_CACHE) # noqa: S310
urllib.request.urlretrieve(SILERO_VAD_URL, SILERO_VAD_CACHE)
LOGGER.info("Silero VAD model downloaded to %s", SILERO_VAD_CACHE)
return SILERO_VAD_CACHE

Expand Down
Loading