From 7b6d5f4695c4db81725590d4e7a37c32f543faa0 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Mon, 3 Jun 2024 08:58:06 +0200 Subject: [PATCH] Update lollms_whisper.py --- lollms/services/whisper/lollms_whisper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lollms/services/whisper/lollms_whisper.py b/lollms/services/whisper/lollms_whisper.py index c4ed67c..bc0e4d6 100644 --- a/lollms/services/whisper/lollms_whisper.py +++ b/lollms/services/whisper/lollms_whisper.py @@ -40,7 +40,7 @@ class LollmsWhisper(LollmsSTT): model="small", output_path=None ): - super().__init__(app, model, output_path) + super().__init__("whisper",app, model, output_path) self.whisper = whisper.load_model(model) self.ready = True