alexkueck commited on
Commit
9d29d6d
·
1 Parent(s): f152e71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -572,10 +572,12 @@ with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
572
  with gr.Column(min_width=70, scale=1):
573
  cancelBtn = gr.Button("Stop")
574
  with gr.Row():
575
- file_display = gr.File( label=None, interactive=False, height=20, min_width=20, visible=False, scale=0)
576
- image_display = gr.Image( visible=False)
577
- upload = gr.UploadButton("📁", file_types=["image", "video", "audio"], scale=9)
578
- emptyBtn = gr.ClearButton([user_input, chatbot, history, file_display, image_display], value="🧹 Neue Session", scale=10)
 
 
579
 
580
  with gr.Column():
581
  with gr.Column(min_width=50, scale=1):
 
572
  with gr.Column(min_width=70, scale=1):
573
  cancelBtn = gr.Button("Stop")
574
  with gr.Row():
575
+ with gr.Column(scale = 1):
576
+ file_display = gr.File(visible=False)
577
+ image_display = gr.Image( visible=False)
578
+ with gr.Column(scale = 10):
579
+ upload = gr.UploadButton("📁", file_types=["image", "video", "audio"], scale=10)
580
+ emptyBtn = gr.ClearButton([user_input, chatbot, history, file_display, image_display], value="🧹 Neue Session", scale=10)
581
 
582
  with gr.Column():
583
  with gr.Column(min_width=50, scale=1):