Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -128,8 +128,9 @@ chat_interface = gr.ChatInterface(
|
|
128 |
],
|
129 |
)
|
130 |
|
|
|
131 |
# Setup and launch the Gradio demo with Blocks API.
|
132 |
-
with gr.Blocks(css="style.css") as demo:
|
133 |
gr.Markdown(DESCRIPTION)
|
134 |
chat_interface.render()
|
135 |
|
|
|
128 |
],
|
129 |
)
|
130 |
|
131 |
+
chatbot=gr.Chatbot(height=450, label='Gradio ChatInterface')
|
132 |
# Setup and launch the Gradio demo with Blocks API.
|
133 |
+
with gr.Blocks(css="style.css", fill_height=True) as demo:
|
134 |
gr.Markdown(DESCRIPTION)
|
135 |
chat_interface.render()
|
136 |
|