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