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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changelog
Unreleased
----------

### Fixed

- Fix VAD Filtering enable logic to match documentation

[1.7.1] (2024-12-18)
--------------------

Expand Down
2 changes: 1 addition & 1 deletion app/webservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async def asr(
description="Enable the voice activity detection (VAD) to filter out parts of the audio without speech",
include_in_schema=(True if CONFIG.ASR_ENGINE == "faster_whisper" else False),
),
] = False,
] = (CONFIG.ASR_ENGINE == "faster_whisper"),
word_timestamps: bool = Query(default=False, description="Word level timestamps"),
output: Union[str, None] = Query(default="txt", enum=["txt", "vtt", "srt", "tsv", "json"]),
):
Expand Down