Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
akutty
/
erav2s13
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c7e44af
erav2s13
/
app.py
Mojo
Added files
c7e44af
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()