Duplicated from aadnk/whisper-webui
295de00
1
2
3
4
5
6
7
8
from typing import Union class ProgressListener: def on_progress(self, current: Union[int, float], total: Union[int, float]): self.total = total def on_finished(self): pass