Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
XciD
/
r2r2
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
r2r2
/
app.py
XciD
HF Staff
Create app.py
429476c
verified
1 day ago
raw
Copy download link
history
blame
contribute
delete
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()