whisper-webui-translate / src /hooks /progressListener.py
avans06's picture
Integration of progress bar with translation model compatibility
92bc446
raw
history blame
No virus
216 Bytes
from typing import Union
class ProgressListener:
def on_progress(self, current: Union[int, float], total: Union[int, float], desc: str = None):
self.total = total
def on_finished(self):
pass