Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
carblacac
/
minima
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fa7e850
minima
/
app.py
carblacac
Add application file
fa7e850
over 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()