anna1au commited on
Commit
06b70ad
·
verified ·
1 Parent(s): 4ab3987

Added hello world

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