sanuth123 commited on
Commit
9193df1
·
verified ·
1 Parent(s): 5fa9406

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -77,9 +77,8 @@ chatbot = gr.Chatbot(placeholder="<strong>Chatbot that answers questions on agil
77
  # Gradio Chat Interface
78
  demo = gr.ChatInterface(
79
  fn=respond,
80
- type="messages",
81
- chatbot
82
  )
83
-
84
  if __name__ == "__main__":
85
  demo.launch()
 
77
  # Gradio Chat Interface
78
  demo = gr.ChatInterface(
79
  fn=respond,
80
+ chatbot=chatbot,
81
+ type="messages"
82
  )
 
83
  if __name__ == "__main__":
84
  demo.launch()