fffiloni commited on
Commit
7367001
1 Parent(s): 6c71d3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -120,10 +120,13 @@ with gr.Blocks(css=css) as demo:
120
  "A woman playing on saxophone"
121
  ]
122
  ],
 
123
  inputs = [
124
  ref_path, ref_style, ref_prompt,
125
  prompt1, prompt2, prompt3
126
- ]
 
 
127
  )
128
 
129
 
 
120
  "A woman playing on saxophone"
121
  ]
122
  ],
123
+ fn=run,
124
  inputs = [
125
  ref_path, ref_style, ref_prompt,
126
  prompt1, prompt2, prompt3
127
+ ],
128
+ outputs=[results],
129
+ cache_examples=False
130
  )
131
 
132