rossiter78 commited on
Commit
46e9cd6
·
verified ·
1 Parent(s): 7ee27aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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)