Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
miittnnss
/
UrFriendly-Chatbot
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
miittnnss
commited on
Sep 10, 2023
Commit
09728a0
·
1 Parent(s):
fc3900f
initial commit
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -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