umair894 commited on
Commit
55f2e9a
1 Parent(s): 1e632b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,7 +16,7 @@ def chat_response(message, history):
16
  response = output[0].content[0].text.value
17
  return response
18
 
19
- with gr.Blocks() as demo:
20
- chatbot = gr.ChatInterface(chat_response,css="footer {visibility: hidden}",theme=None)
21
 
22
  demo.launch(share=True)
 
16
  response = output[0].content[0].text.value
17
  return response
18
 
19
+ with gr.Blocks(css="footer{display:none !important}") as demo:
20
+ chatbot = gr.ChatInterface(chat_response,theme=None)
21
 
22
  demo.launch(share=True)