Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
cls00
/
tutorial
like
0
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
tutorial
/
app.py
cls00
Upload app.py
7d460d4
verified
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
138 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
gr.Interface(fn=greet,
inputs=
"text"
,
outputs=
"text"
).launch()