antfraia commited on
Commit
c4316b9
·
1 Parent(s): d5c22c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -1,3 +1,13 @@
1
  import gradio as gr
2
 
3
- gr.Interface.load("models/openai/whisper-large-v2").launch()
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ gr.Interface.load("models/openai/whisper-large-v2").launch()
4
+
5
+ iface = gr.Interface(
6
+ title="Speech-to-Text using Whisper v2",
7
+ description="Upload an audio file to transcribe it to text.",
8
+ theme="Monochrome",
9
+ live=True,
10
+ capture_session=True,
11
+ )
12
+
13
+ iface.launch()