Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
zhen-di
/
space1
like
0
Sleeping
App
Files
Files
Community
main
space1
/
app.py
zhendi
Add application file
b9f6db4
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()