Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -248,11 +248,12 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
|
|
| 248 |
gr.Markdown(""" Qwen Image Edit 2509 ✨ Using [dx8152's Qwen-Image-Edit-2509 Fusion LoRA](https://huggingface.co/dx8152/Qwen-Image-Edit-2509-Fusion) and [lightx2v Qwen-Image-Lightning LoRA]() for 4-step inference 💨 """ )
|
| 249 |
with gr.Row():
|
| 250 |
with gr.Column():
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
|
|
|
| 256 |
prompt = gr.Textbox(label="Prompt")
|
| 257 |
run_button = gr.Button("Fuse Images", variant="primary")
|
| 258 |
|
|
|
|
| 248 |
gr.Markdown(""" Qwen Image Edit 2509 ✨ Using [dx8152's Qwen-Image-Edit-2509 Fusion LoRA](https://huggingface.co/dx8152/Qwen-Image-Edit-2509-Fusion) and [lightx2v Qwen-Image-Lightning LoRA]() for 4-step inference 💨 """ )
|
| 249 |
with gr.Row():
|
| 250 |
with gr.Column():
|
| 251 |
+
with gr.Row():
|
| 252 |
+
gallery = gr.Gallery(
|
| 253 |
+
label="Upload subject images (background auto removed)",
|
| 254 |
+
columns=3, rows=2, height="auto", type="pil"
|
| 255 |
+
)
|
| 256 |
+
image_background = gr.Image(label="Background Image", type="pil", visible=True)
|
| 257 |
prompt = gr.Textbox(label="Prompt")
|
| 258 |
run_button = gr.Button("Fuse Images", variant="primary")
|
| 259 |
|