artificialguybr commited on
Commit
648148b
1 Parent(s): 057bc07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
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
- # Add any advanced options you need here
47
 
 
 
 
 
48
  gallery.select(
49
- # Define your update_selection function
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,