NeerAbhy commited on
Commit
019151b
·
verified ·
1 Parent(s): 73644b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -126,7 +126,9 @@ with demo:
126
  text = gr.Textbox()
127
  source_lang = gr.Dropdown(label="Source lang", choices=list(lang_id.keys()))
128
  b3 = gr.Button("Select lang")
129
- b3.click(input = source_lang)
 
 
130
  b1 = gr.Button("convert to text")
131
  b1.click(audio_a_text, inputs=audio, outputs=text)
132
 
 
126
  text = gr.Textbox()
127
  source_lang = gr.Dropdown(label="Source lang", choices=list(lang_id.keys()))
128
  b3 = gr.Button("Select lang")
129
+ gr.Examples(
130
+ inputs=[
131
+ model_dropdown])
132
  b1 = gr.Button("convert to text")
133
  b1.click(audio_a_text, inputs=audio, outputs=text)
134