Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -67,8 +67,10 @@ demo = gr.ChatInterface(
|
|
| 67 |
theme=gr.themes.Soft(),
|
| 68 |
retry_btn=None,
|
| 69 |
undo_btn=None,
|
| 70 |
-
show_footer=False, # Removes "Built with Gradio" footer
|
| 71 |
)
|
|
|
|
|
|
|
|
|
|
| 72 |
|
| 73 |
if __name__ == "__main__":
|
| 74 |
demo.launch(show_api=False)
|
|
|
|
| 67 |
theme=gr.themes.Soft(),
|
| 68 |
retry_btn=None,
|
| 69 |
undo_btn=None,
|
|
|
|
| 70 |
)
|
| 71 |
+
# Wrap in Blocks to add custom CSS
|
| 72 |
+
with gr.Blocks(css=".footer {display: none !important;}") as demo:
|
| 73 |
+
chat.render()
|
| 74 |
|
| 75 |
if __name__ == "__main__":
|
| 76 |
demo.launch(show_api=False)
|