FrederickSundeep commited on
Commit
be61c57
·
1 Parent(s): 1d85069

commit 0002

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -52,4 +52,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
52
  chatbot=gr.Chatbot(type="messages")
53
  )
54
 
55
- demo.launch(show_api=False, show_footer=False)
 
 
 
 
52
  chatbot=gr.Chatbot(type="messages")
53
  )
54
 
55
+ with gr.Blocks(css="footer { display: none !important; }") as demo:
56
+ gr.Markdown("Your app UI here")
57
+
58
+ demo.launch()