jasminemomoko commited on
Commit
6969f2b
·
verified ·
1 Parent(s): cddcc0e

Update app.py

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