sarahrobe commited on
Commit
a6f0359
·
verified ·
1 Parent(s): e675391

Create app.py

Browse files

Steps 1-5 of Chatbot Lesson

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