Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ronakr
/
testspace
like
0
Sleeping
App
Files
Files
Community
5e527c3
testspace
/
app.py
Ronak Ramachandran
hello world only (simpler for now)
5e527c3
5 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
if
__name__ ==
"__main__"
:
demo.launch()