Ignore output_frame_size parameter (#210)

This commit is contained in:
Václav Volhejn
2025-04-01 20:10:27 +02:00
committed by GitHub
parent 1f0462371e
commit 06885d06c4
9 changed files with 31 additions and 24 deletions

View File

@@ -39,7 +39,7 @@ class ReplyOnStopWords(ReplyOnPause):
can_interrupt: bool = True,
expected_layout: Literal["mono", "stereo"] = "mono",
output_sample_rate: int = 24000,
output_frame_size: int = 480,
output_frame_size: int | None = None, # Deprecated
input_sample_rate: int = 48000,
model: PauseDetectionModel | None = None,
):