awacke1 commited on
Commit
ef5e5f7
1 Parent(s): 35ce5a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -303,6 +303,11 @@ with gr.Blocks(css=css) as demo:
303
 
304
  # Attach click event handlers to the buttons
305
  save_all_button.click(save_all_button_click)
 
 
 
 
 
306
  clear_all_button.click(clear_all_button_click)
307
 
308
  demo.queue()
 
303
 
304
  # Attach click event handlers to the buttons
305
  save_all_button.click(save_all_button_click)
306
+
307
+ with gr.Column():
308
+ file_obj = gr.File(label="Input File")
309
+ input= file_obj
310
+
311
  clear_all_button.click(clear_all_button_click)
312
 
313
  demo.queue()