Yw22 commited on
Commit
4233bc6
1 Parent(s): 9c1ecf1
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -676,7 +676,7 @@ with block as demo:
676
 
677
  # return input_image, prompt, drag_mode, seed, personalized, tracking_points, first_frame_path
678
  def process_example(input_image, prompt, drag_mode, seed, personalized, first_frame_path):
679
- return input_image, prompt, drag_mode, seed, personalized
680
 
681
  # example = gr.Examples(
682
  # label="Input Example",
@@ -693,7 +693,7 @@ with block as demo:
693
  label="Input Example",
694
  examples=image_examples,
695
  inputs=[input_image, prompt, drag_mode, seed, personalized, first_frame_path],
696
- outputs=[input_image, prompt, drag_mode, seed, personalized],
697
  fn=process_example,
698
  run_on_click=True,
699
  examples_per_page=20,
 
676
 
677
  # return input_image, prompt, drag_mode, seed, personalized, tracking_points, first_frame_path
678
  def process_example(input_image, prompt, drag_mode, seed, personalized, first_frame_path):
679
+ return input_image, prompt, drag_mode, seed, personalized, first_frame_path
680
 
681
  # example = gr.Examples(
682
  # label="Input Example",
 
693
  label="Input Example",
694
  examples=image_examples,
695
  inputs=[input_image, prompt, drag_mode, seed, personalized, first_frame_path],
696
+ outputs=[input_image, prompt, drag_mode, seed, personalized, first_frame_path],
697
  fn=process_example,
698
  run_on_click=True,
699
  examples_per_page=20,