Avkash commited on
Commit
26e41c6
·
1 Parent(s): fcf8dd1

Create new file

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from whisperui import WhisperModelUI
3
+
4
+
5
+ if __name__ == '__main__':
6
+ my_app = gr.Blocks()
7
+ ui_obj = WhisperModelUI(my_app)
8
+ ui_obj.create_whisper_ui()
9
+ ui_obj.launch_ui()
10
+