datasciencedojo commited on
Commit
3cb94e0
1 Parent(s): 8e92bc4

Change output component of gradio

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,5 +76,5 @@ footer {display:none !important}
76
  }
77
  """
78
 
79
- demo = gr.Interface(fn = transcription, inputs = gr.inputs.Audio(label="Input Audio", type="file"), outputs = gr.outputs.Text(label="Transcription"), examples = examples, css = css)
80
  demo.launch()
 
76
  }
77
  """
78
 
79
+ demo = gr.Interface(fn = transcription, inputs = gr.inputs.Audio(label="Input Audio", type="file"), outputs = gr.outputs.Textbox(label="Transcription"), examples = examples, css = css)
80
  demo.launch()