consy commited on
Commit
65f0481
·
verified ·
1 Parent(s): c744265

Update app.py

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