update chatbot height
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ In this app, you can explore the outputs of a 20B large language model.
|
|
62 |
"""
|
63 |
|
64 |
with gr.Blocks(css = """#col_container {width: 700px; margin-left: auto; margin-right: auto;}
|
65 |
-
|
66 |
gr.HTML(title)
|
67 |
with gr.Column(elem_id = "col_container"):
|
68 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
|
|
62 |
"""
|
63 |
|
64 |
with gr.Blocks(css = """#col_container {width: 700px; margin-left: auto; margin-right: auto;}
|
65 |
+
#chatbot {height: 400px; overflow: auto;}""") as demo:
|
66 |
gr.HTML(title)
|
67 |
with gr.Column(elem_id = "col_container"):
|
68 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|