NeerAbhy commited on
Commit
d70140c
·
verified ·
1 Parent(s): bea489a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -125,9 +125,9 @@ with demo:
125
  audio = gr.Audio(type="filepath", label = "Upload a file")
126
  text = gr.Textbox()
127
  source_lang = gr.Radio(label="Source lang", choices=list(lang_id.keys()))
128
- gr.Examples(examples = source_lang)
129
- #inputs=[
130
- # source_lang])
131
  b1 = gr.Button("convert to text")
132
  b1.click(audio_a_text, inputs=audio, outputs=text)
133
 
 
125
  audio = gr.Audio(type="filepath", label = "Upload a file")
126
  text = gr.Textbox()
127
  source_lang = gr.Radio(label="Source lang", choices=list(lang_id.keys()))
128
+ gr.Examples(examples = examples,
129
+ inputs=[
130
+ source_lang])
131
  b1 = gr.Button("convert to text")
132
  b1.click(audio_a_text, inputs=audio, outputs=text)
133