ibvhim commited on
Commit
639e2de
1 Parent(s): badb2c8

Update Chatbot/app.py

Browse files
Files changed (1) hide show
  1. Chatbot/app.py +4 -2
Chatbot/app.py CHANGED
@@ -25,8 +25,10 @@ import gradio as gr
25
 
26
  interface = gr.Interface(
27
  fn=predict,
28
- inputs="text",
29
- outputs="chatbot",
 
 
30
  )
31
 
32
  if __name__ == '__main__':
 
25
 
26
  interface = gr.Interface(
27
  fn=predict,
28
+ theme="default",
29
+ css=".footer {display:none !important}",
30
+ inputs=["text", "state"],
31
+ outputs=["chatbot", "state"],
32
  )
33
 
34
  if __name__ == '__main__':