Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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 |
|