dyna-67 commited on
Commit
54a2e75
·
verified ·
1 Parent(s): fe8e13a

Create echo chatbot

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