Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
User1342
/
Pinpoint-Web
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
db39e1b
Pinpoint-Web
/
app.py
User1342
Create new file
b65ae5c
almost 4 years ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()