diff --git a/whisper-service/model_implementations/faster_whisper_model.py b/whisper-service/model_implementations/faster_whisper_model.py index 96899f1..8de41f7 100644 --- a/whisper-service/model_implementations/faster_whisper_model.py +++ b/whisper-service/model_implementations/faster_whisper_model.py @@ -82,8 +82,9 @@ async def transcribe_audio(self, audio_segment, prev_text): initial_prompt=prev_text, word_timestamps=True, vad_filter=True, + hallucination_silence_threshold=0.1, language="en", - multilingual=False + multilingual=False, ) segments = []