Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
trl-lib
/
job
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b51cc7c
job
/
app.py
qgallouedec
HF Staff
Create app.py
d1b93a4
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
137 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()