svarshney25 commited on
Commit
4eefee7
·
verified ·
1 Parent(s): dfc8780

Create app.py

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