Update app.py
Browse files
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 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
|
|
|
|
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):
|