Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -78,6 +78,6 @@ def predict(user_input, history):
|
|
78 |
return message_content
|
79 |
|
80 |
#GUI
|
81 |
-
with gr.Blocks(theme) as demo:
|
82 |
gr.ChatInterface(predict, submit_btn="Chat with "+ coach_name_short, retry_btn=None, undo_btn=None, clear_btn=None, autofocus=True)
|
83 |
demo.launch(show_api=False)
|
|
|
78 |
return message_content
|
79 |
|
80 |
#GUI
|
81 |
+
with gr.Blocks(theme, css="footer {visibility: hidden}") as demo:
|
82 |
gr.ChatInterface(predict, submit_btn="Chat with "+ coach_name_short, retry_btn=None, undo_btn=None, clear_btn=None, autofocus=True)
|
83 |
demo.launch(show_api=False)
|