Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
linoyts/Qwen-Image-Edit-2509-Fast
tori29umai
/
Qwen-Image-2509-CharacterSheet
like
43
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
71f5363
Qwen-Image-2509-CharacterSheet
/
app.py
naykun
initial commit
71f5363
verified
about 1 month 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()