miittnnss commited on
Commit
09728a0
·
1 Parent(s): fc3900f

initial commit

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def chat(input):
4
+ return "Hello! How are you today! UrFriendly Chatbot is under development!!"
5
+
6
+
7
+ iface = gr.Interface(
8
+ fn=chat,
9
+ )
10
+
11
+ iface.launch