Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Saad123
/
minima
like
0
Runtime error
App
Files
Files
Community
0347b7b
minima
/
app.py
M. Saad Munawar
https://huggingface.co/spaces/Saad123/minima
ed0743b
about 2 years ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()