Ifeeab05 commited on
Commit
1f54368
·
verified ·
1 Parent(s): 79ca362
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import gradio as gr
2
  def echo(message, history):
3
  return message
 
 
4
  chatbot = gr.ChatInterface(echo, type="messages") #chatbot UI - convo history & user input
5
  chatbot.launch()
6
- print("hELLO World")
 
1
  import gradio as gr
2
  def echo(message, history):
3
  return message
4
+
5
+ print("hELLO World")
6
  chatbot = gr.ChatInterface(echo, type="messages") #chatbot UI - convo history & user input
7
  chatbot.launch()