Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SpicyHam
/
Apppy
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Apppy
/
App.py
SpicyHam
Create App.py
c1f3c45
verified
12 months ago
raw
Copy download link
history
blame
contribute
delete
144 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()