Spaces:
Running
Running
Commit
·
3a091ee
1
Parent(s):
890a980
fix
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ with gr.Blocks(css=css) as demo:
|
|
190 |
guidance_scale,
|
191 |
num_inference_steps,
|
192 |
],
|
193 |
-
outputs=[
|
194 |
)
|
195 |
|
196 |
gr.on(
|
@@ -199,7 +199,7 @@ with gr.Blocks(css=css) as demo:
|
|
199 |
inputs=[
|
200 |
input_image,
|
201 |
],
|
202 |
-
outputs=[
|
203 |
)
|
204 |
|
205 |
if __name__ == "__main__":
|
|
|
190 |
guidance_scale,
|
191 |
num_inference_steps,
|
192 |
],
|
193 |
+
outputs=[result, seed],
|
194 |
)
|
195 |
|
196 |
gr.on(
|
|
|
199 |
inputs=[
|
200 |
input_image,
|
201 |
],
|
202 |
+
outputs=[generated_prompt],
|
203 |
)
|
204 |
|
205 |
if __name__ == "__main__":
|