Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jph00
/
minima
like
3
No application file
App
Files
Files
Community
19
refs/pr/4
minima
/
app.py
mipbkhn
Create app.py
0e9cb27
almost 2 years ago
raw
Copy download link
history
blame
Safe
152 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()