Spaces:
Running
Running
update(ui): Adjust chatbot display height
Browse files- [update] Set gr.Chatbot height to 800 (app.py:206)
app.py
CHANGED
|
@@ -203,7 +203,7 @@ with gr.Blocks(title="HF-Inferoxy AI Hub", theme=gr.themes.Soft()) as demo:
|
|
| 203 |
chatbot_display = gr.Chatbot(
|
| 204 |
label="Chat",
|
| 205 |
type="messages",
|
| 206 |
-
height=
|
| 207 |
show_copy_button=True
|
| 208 |
)
|
| 209 |
|
|
|
|
| 203 |
chatbot_display = gr.Chatbot(
|
| 204 |
label="Chat",
|
| 205 |
type="messages",
|
| 206 |
+
height=800,
|
| 207 |
show_copy_button=True
|
| 208 |
)
|
| 209 |
|