Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xiaozaa
/
cat-try-off-flux
like
18
Runtime error
App
Files
Files
Community
1
6260538
cat-try-off-flux
/
app.py
xiaozaa
initial commit
6260538
verified
12 days ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()