ysharma HF Staff commited on
Commit
92cfa20
·
verified ·
1 Parent(s): 68f9508

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -30,11 +30,12 @@ def bot(history):
30
  yield history
31
 
32
 
33
- with gr.Blocks(css=css) as demo:
34
  chatbot = gr.Chatbot(
35
  [],
36
  elem_id="chatbot",
37
- bubble_full_width=False,
 
38
  )
39
 
40
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
 
30
  yield history
31
 
32
 
33
+ with gr.Blocks(css=css, fill_height=True) as demo:
34
  chatbot = gr.Chatbot(
35
  [],
36
  elem_id="chatbot",
37
+ bubble_full_width=True,
38
+ fill_height=True
39
  )
40
 
41
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)