Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thedevvikas
/
minimal
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ba92632
minimal
/
app.py
thedevvikas
Added app.py
ba92632
5 months ago
raw
Copy download link
history
blame
Safe
122 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
"
gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()