Spaces:
Runtime error
Runtime error
Commit
·
648148b
1
Parent(s):
057bc07
Update app.py
Browse files
app.py
CHANGED
|
@@ -43,10 +43,14 @@ with gr.Blocks(css="custom.css") as app:
|
|
| 43 |
button = gr.Button("Run")
|
| 44 |
result = gr.Image(interactive=False, label="Generated Image")
|
| 45 |
with gr.Accordion("Advanced options", open=False):
|
| 46 |
-
#
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
gallery.select(
|
| 49 |
-
|
| 50 |
)
|
| 51 |
prompt.submit(
|
| 52 |
fn=run_lora,
|
|
|
|
| 43 |
button = gr.Button("Run")
|
| 44 |
result = gr.Image(interactive=False, label="Generated Image")
|
| 45 |
with gr.Accordion("Advanced options", open=False):
|
| 46 |
+
pass # Placeholder for advanced options
|
| 47 |
|
| 48 |
+
# Placeholder for gallery.select function
|
| 49 |
+
def update_selection():
|
| 50 |
+
pass
|
| 51 |
+
|
| 52 |
gallery.select(
|
| 53 |
+
update_selection
|
| 54 |
)
|
| 55 |
prompt.submit(
|
| 56 |
fn=run_lora,
|