Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
gmshroff/gmserver
gmshroff
/
icapp_space
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5ba3309
icapp_space
/
app.py
gmshroff
created app.py
5ba3309
over 1 year ago
raw
Copy download link
history
blame
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()