Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Louxads
/
hello
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
8a10951
hello
/
app.py
Louxads
Create app.py
72e24af
verified
8 months ago
raw
Copy download link
history
blame
Safe
177 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
iface.launch()