sarahrobe commited on
Commit
8512b48
·
verified ·
1 Parent(s): 9d16763

removed warning

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