Hikmahhh commited on
Commit
c9a6979
·
verified ·
1 Parent(s): 4028784

Create app.py

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
+
4
+ def echo(message, history):
5
+ return message
6
+
7
+ chatbot = gr.ChatInterface() #conversation history and user input(chatbot UI)
8
+ chatbot.launch()