Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
|
|
|
| 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)
|