update layout bug
Browse files
app.py
CHANGED
@@ -177,8 +177,9 @@ with gr.Blocks(scale=4) as demo:
|
|
177 |
""")
|
178 |
|
179 |
with gr.Row(scale=1):
|
180 |
-
with gr.Column(scale=1)
|
181 |
-
image_path = gr.Image(type="filepath", label="Image", value=None)
|
|
|
182 |
chatbot = gr.Chatbot(scale=1).style(height=600)
|
183 |
|
184 |
with gr.Row():
|
|
|
177 |
""")
|
178 |
|
179 |
with gr.Row(scale=1):
|
180 |
+
with gr.Column(scale=1):
|
181 |
+
image_path = gr.Image(type="filepath", label="Image", value=None).style(height=600)
|
182 |
+
|
183 |
chatbot = gr.Chatbot(scale=1).style(height=600)
|
184 |
|
185 |
with gr.Row():
|