Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -443,14 +443,15 @@ with gr.Blocks(analytics_enabled=False) as demo:
|
|
| 443 |
fn = show_hide_subject_image_component,
|
| 444 |
inputs = [use_subject_ref],
|
| 445 |
outputs = [sub_img_panel],
|
| 446 |
-
queue = False
|
|
|
|
| 447 |
)
|
| 448 |
|
| 449 |
submit_btn.click(
|
| 450 |
fn = run,
|
| 451 |
inputs = [style_reference_image, style_description, subject_prompt, subject_reference, use_subject_ref, use_low_vram],
|
| 452 |
outputs = [output_image],
|
| 453 |
-
|
| 454 |
)
|
| 455 |
|
| 456 |
-
demo.queue().launch(show_error=True
|
|
|
|
| 443 |
fn = show_hide_subject_image_component,
|
| 444 |
inputs = [use_subject_ref],
|
| 445 |
outputs = [sub_img_panel],
|
| 446 |
+
queue = False,
|
| 447 |
+
api_visibility="private"
|
| 448 |
)
|
| 449 |
|
| 450 |
submit_btn.click(
|
| 451 |
fn = run,
|
| 452 |
inputs = [style_reference_image, style_description, subject_prompt, subject_reference, use_subject_ref, use_low_vram],
|
| 453 |
outputs = [output_image],
|
| 454 |
+
api_visibility="private"
|
| 455 |
)
|
| 456 |
|
| 457 |
+
demo.queue().launch(show_error=True)
|