linoyts HF Staff commited on
Commit
a84df70
·
verified ·
1 Parent(s): c3ed1f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -288,11 +288,11 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=css) as demo:
288
 
289
  gr.Examples(
290
  examples=[
291
- [["product.png"], "wednesday.png", "put the product in her hand"],
292
- [[], "fusion_car.png", ""],
293
- [["product_2.png"], "background_2.png", "Seamlessly merge the product into the background"],
294
- [[], "fusion_shoes.png", "put the shoes on the feet"],
295
- [["product_3.png"], "background_3.png", "Seamlessly merge the product into the background"],
296
  ],
297
  inputs=[product_image, image_background, prompt],
298
  outputs=[result, seed],
 
288
 
289
  gr.Examples(
290
  examples=[
291
+ ["product.png", "wednesday.png", "put the product in her hand"],
292
+ [None, "fusion_car.png", ""],
293
+ ["product_2.png", "background_2.png", "Seamlessly merge the product into the background"],
294
+ [None, "fusion_shoes.png", "put the shoes on the feet"],
295
+ ["product_3.png", "background_3.png", "Seamlessly merge the product into the background"],
296
  ],
297
  inputs=[product_image, image_background, prompt],
298
  outputs=[result, seed],