demetz commited on
Commit
ffd4434
·
verified ·
1 Parent(s): 0455545

Create app.py

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