Sadmo commited on
Commit
87f3425
·
verified ·
1 Parent(s): 794ac2a

got rid of warning in log

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  def echo(message, history):
4
  return message
5
 
6
- chatbot = gr.ChatInterface(echo)
7
 
8
  chatbot.launch()
9
 
 
3
  def echo(message, history):
4
  return message
5
 
6
+ chatbot = gr.ChatInterface(echo, type = "messages")
7
 
8
  chatbot.launch()
9