tonic commited on
Commit
76c7a79
1 Parent(s): f55f96c

refactor the interface display (inputs)

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -254,10 +254,10 @@ inputs = [
254
 
255
  gr.Dropdown(choices=choices, label="Your Native Language"),
256
  gr.Dropdown(choices=choices, label="Language To Learn"),
257
- gr.Image(type="pil", label="Camera Input"),
258
- gr.File(label="File Upload"),
259
  gr.Audio(sources="microphone", type="filepath", label="Mic Input"),
260
- gr.Textbox(lines=2, label="Text Input")
 
 
261
  ]
262
 
263
  outputs = [
 
254
 
255
  gr.Dropdown(choices=choices, label="Your Native Language"),
256
  gr.Dropdown(choices=choices, label="Language To Learn"),
 
 
257
  gr.Audio(sources="microphone", type="filepath", label="Mic Input"),
258
+ gr.Image(type="pil", label="Camera Input"),
259
+ gr.Textbox(lines=2, label="Text Input"),
260
+ gr.File(label="File Upload")
261
  ]
262
 
263
  outputs = [