Update lollms_whisper.py

This commit is contained in:
Saifeddine ALOUI 2024-06-03 08:58:06 +02:00 committed by GitHub
parent 2e84e69287
commit 7b6d5f4695
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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