Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -400,7 +400,7 @@ with gr.Blocks(css=css) as demo:
|
|
400 |
with gr.Blocks():
|
401 |
with gr.Row():
|
402 |
use_ip_adapter = gr.Checkbox(
|
403 |
-
label="Use
|
404 |
value=False,
|
405 |
)
|
406 |
|
@@ -443,7 +443,7 @@ with gr.Blocks(css=css) as demo:
|
|
443 |
)
|
444 |
# --------------------------------------------------------------------------------------
|
445 |
|
446 |
-
gr.Examples(examples=examples, inputs=[prompt])
|
447 |
gr.Examples(examples=examples_negative, inputs=[negative_prompt])
|
448 |
|
449 |
run_button = gr.Button("Run", scale=1, variant="primary")
|
|
|
400 |
with gr.Blocks():
|
401 |
with gr.Row():
|
402 |
use_ip_adapter = gr.Checkbox(
|
403 |
+
label="Use IP_Adapter",
|
404 |
value=False,
|
405 |
)
|
406 |
|
|
|
443 |
)
|
444 |
# --------------------------------------------------------------------------------------
|
445 |
|
446 |
+
gr.Examples(examples=examples, inputs=[prompt], label="Use IP_Adapter",)
|
447 |
gr.Examples(examples=examples_negative, inputs=[negative_prompt])
|
448 |
|
449 |
run_button = gr.Button("Run", scale=1, variant="primary")
|