Roastem commited on
Commit
0fe5e7c
1 Parent(s): 84bcd7c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -52,11 +52,12 @@ def bot(query):
52
  return llm_response
53
 
54
 
55
- with gr.Blocks(title='Sunny') as main:
56
  gr.Markdown("# Sunny Chatbot")
57
  chatbot = gr.Chatbot([], elem_id="chatbot", height=700)
58
  msg = gr.Textbox()
59
  clear = gr.ClearButton([msg, chatbot])
 
60
 
61
  def respond(message, chat_history):
62
  bot_message = bot(message)
 
52
  return llm_response
53
 
54
 
55
+ with gr.Blocks(title='Sunny', css="footer {visibility: hidden}") as main:
56
  gr.Markdown("# Sunny Chatbot")
57
  chatbot = gr.Chatbot([], elem_id="chatbot", height=700)
58
  msg = gr.Textbox()
59
  clear = gr.ClearButton([msg, chatbot])
60
+ css="footer {visibility: hidden}"
61
 
62
  def respond(message, chat_history):
63
  bot_message = bot(message)