Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -85,13 +85,13 @@ def response(history, image):
|
|
| 85 |
|
| 86 |
with gr.Blocks(css=css) as demo:
|
| 87 |
gr.HTML(title)
|
| 88 |
-
with gr.Row()
|
| 89 |
with gr.Column(elem_id="col-container"):
|
| 90 |
image = gr.Image(type="pil")
|
| 91 |
message = gr.Textbox(interactive=True, show_label=False, container=False)
|
| 92 |
chat = gr.Chatbot(show_label=False)
|
| 93 |
submit = gr.Button(value="Upload", variant="primary")
|
| 94 |
-
with gr.Column()
|
| 95 |
output = gr.Image(type="pil")
|
| 96 |
|
| 97 |
response_handler = (
|
|
|
|
| 85 |
|
| 86 |
with gr.Blocks(css=css) as demo:
|
| 87 |
gr.HTML(title)
|
| 88 |
+
with gr.Row():
|
| 89 |
with gr.Column(elem_id="col-container"):
|
| 90 |
image = gr.Image(type="pil")
|
| 91 |
message = gr.Textbox(interactive=True, show_label=False, container=False)
|
| 92 |
chat = gr.Chatbot(show_label=False)
|
| 93 |
submit = gr.Button(value="Upload", variant="primary")
|
| 94 |
+
with gr.Column():
|
| 95 |
output = gr.Image(type="pil")
|
| 96 |
|
| 97 |
response_handler = (
|