File size: 263 Bytes
04e75ed
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from ui.gradio import launch_ui
from whisper_singleton import get_embedding,get_whisper
from utils.central_logging import setup_logging


setup_logging()

def warmup():
    get_whisper()
    get_embedding()

if __name__ == "__main__":
    warmup()
    launch_ui()