Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
michellehbn
/
I-Love-HuggingFace
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
michellehbn
HF Staff
commited on
17 days ago
Commit
2c2b0c8
·
verified
·
1 Parent(s):
73a9727
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
""" App
2
+
"""
3
+
4
+
import gradio as gr
5
+
def greet(name):
6
+
return "Hello there {}".format(name)
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()