eabo's picture
Update app.py
4ab037d
raw
history blame contribute delete
154 Bytes
import gradio as gr
from whisperui import WhisperModelUI
my_app = gr.Blocks()
iface = WhisperModelUI(my_app)
iface.create_whisper_ui()
iface.launch_ui()