Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
junelee
/
test1
like
0
Sleeping
App
Files
Files
Community
main
test1
/
app.py
junelee
Add application file
cb3c408
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!! with june"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()