Spaces:
Runtime error
Runtime error
File size: 200 Bytes
b5429db |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
from whisperui import WhisperModelUI
if __name__ == '__main__':
my_app = gr.Blocks()
ui_obj = WhisperModelUI(my_app)
ui_obj.create_whisper_ui()
ui_obj.launch_ui() |