Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ def transcribe(audio, state="", uploaded_audio=None):
|
|
32 |
|
33 |
|
34 |
|
35 |
-
gr.Interface(
|
36 |
fn=transcribe,
|
37 |
inputs=[
|
38 |
gr.inputs.Audio(source="microphone", type="filepath"),
|
@@ -44,4 +44,6 @@ gr.Interface(
|
|
44 |
"state"
|
45 |
],
|
46 |
|
47 |
-
live=True)
|
|
|
|
|
|
32 |
|
33 |
|
34 |
|
35 |
+
demo = gr.Interface(
|
36 |
fn=transcribe,
|
37 |
inputs=[
|
38 |
gr.inputs.Audio(source="microphone", type="filepath"),
|
|
|
44 |
"state"
|
45 |
],
|
46 |
|
47 |
+
live=True)
|
48 |
+
|
49 |
+
demo.launch()
|