svarshney25 commited on
Commit
526cd12
·
verified ·
1 Parent(s): 480987d

Update app.py

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