linoyts HF Staff commited on
Commit
421ed1d
·
verified ·
1 Parent(s): fee7cbb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -557,6 +557,15 @@ with gr.Blocks(css=css) as demo:
557
  show_label=True
558
  )
559
 
 
 
 
 
 
 
 
 
 
560
 
561
 
562
 
 
557
  show_label=True
558
  )
559
 
560
+ gr.Examples(examples=[
561
+ [["disaster_girl.jpg", "grumpycat.png"], "Next Scene: the camera zooms in, showing the cat walking away from the fire"],
562
+ [["wednesday.png"], "Next Scene: The camera pulls back and rises to an elevated angle, revealing the full dance floor with the choreographed movements of all dancers as the central figure becomes part of the larger ensemble."],
563
+ ],
564
+ inputs=[input_images, prompt],
565
+ outputs=[result, seed],
566
+ fn=infer,
567
+ cache_examples="lazy")
568
+
569
 
570
 
571