fix background not passed on run click
Browse files
app.py
CHANGED
@@ -272,7 +272,8 @@ model: https://huggingface.co/DionTimmer/controlnet_qrcode-control_v1p_sd15
|
|
272 |
strength,
|
273 |
seed,
|
274 |
init_image,
|
275 |
-
|
|
|
276 |
use_qr_code_as_init_image,
|
277 |
sampler,
|
278 |
width, # add width input
|
@@ -282,6 +283,7 @@ model: https://huggingface.co/DionTimmer/controlnet_qrcode-control_v1p_sd15
|
|
282 |
concurrency_limit=1
|
283 |
)
|
284 |
|
|
|
285 |
gr.Examples(
|
286 |
examples=[
|
287 |
[
|
|
|
272 |
strength,
|
273 |
seed,
|
274 |
init_image,
|
275 |
+
qrcode_image,
|
276 |
+
background_image, # Add this line
|
277 |
use_qr_code_as_init_image,
|
278 |
sampler,
|
279 |
width, # add width input
|
|
|
283 |
concurrency_limit=1
|
284 |
)
|
285 |
|
286 |
+
|
287 |
gr.Examples(
|
288 |
examples=[
|
289 |
[
|