Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -112,8 +112,7 @@ with gr.Blocks(css=customCSS, theme=small_and_beautiful_theme) as demo:
|
|
112 |
)
|
113 |
|
114 |
# Start chatbot with welcome from bot
|
115 |
-
|
116 |
-
chatbot = gr.Chatbot([(None,'How can I help you?')])
|
117 |
msg = gr.Textbox()
|
118 |
clear = gr.ClearButton([msg, chatbot])
|
119 |
|
|
|
112 |
)
|
113 |
|
114 |
# Start chatbot with welcome from bot
|
115 |
+
chatbot = gr.Chatbot([(None,'How can I help you?')]).style(height=600)
|
|
|
116 |
msg = gr.Textbox()
|
117 |
clear = gr.ClearButton([msg, chatbot])
|
118 |
|