Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Renecto
/
test
like
0
Sleeping
App
Files
Files
Community
b170279
test
/
app.py
Renecto
Update app.py
b170279
verified
3 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
import
gradio
as
gr
import
os
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()