svarshney25 commited on
Commit
6c1adcb
·
verified ·
1 Parent(s): 4eefee7

Update app.py

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