prateekbh commited on
Commit
6bf6d32
·
verified ·
1 Parent(s): c739636

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 = (