Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zohairy
/
testing
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
testing
/
old_app.py
zohairy
adding model and updating app
6de4e86
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
146 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()