Add-Vishnu commited on
Commit
add1066
·
1 Parent(s): 1e0476f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -42,8 +42,7 @@ def transcribe(audio,):
42
  demo = gr.Interface(
43
  transcribe,
44
  gr.Audio(sources=["microphone"]),
45
- gr.Textbox(label="Py_Transcription"),
46
- gr.Textbox(label="Time taken for Transcription")
47
  )
48
 
49
  demo.launch()
 
42
  demo = gr.Interface(
43
  transcribe,
44
  gr.Audio(sources=["microphone"]),
45
+ outputs=[gr.Textbox(label="Py_Transcription"),gr.Textbox(label="Time taken for Transcription")]
 
46
  )
47
 
48
  demo.launch()