annakcarls commited on
Commit
6fb2124
·
verified ·
1 Parent(s): ce8a258

updating message and adding print statement

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -3,6 +3,8 @@ import gradio as gr
3
  def echo(message, history):
4
  return message
5
 
6
- chatbot = gr.ChatInterface(echo)
 
 
7
 
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
 
10
  chatbot.launch()