tonyassi commited on
Commit
a2db043
Β·
verified Β·
1 Parent(s): 1300e82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -66,10 +66,10 @@ with gr.Blocks() as demo:
66
  output = gr.Image(label='Result')
67
 
68
  gr.Examples(
69
- [['./cat.png', './starry_night.jpg', 0.5, '', '']],
70
- [img1, img2, slider, prompt, negative_prompt],
71
- output,
72
- blend,
73
  cache_examples=True,
74
  )
75
 
 
66
  output = gr.Image(label='Result')
67
 
68
  gr.Examples(
69
+ examples=[['./cat.png', './starry_night.jpg', 0.5, '', '']],
70
+ inputs=[img1, img2, slider, prompt, negative_prompt],
71
+ outputs=output,
72
+ fn=blend,
73
  cache_examples=True,
74
  )
75