panelforge commited on
Commit
325abfd
·
verified ·
1 Parent(s): 9177c96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -100,12 +100,13 @@ with gr.Blocks(css="""
100
  run_button.click(
101
  fn=infer,
102
  inputs=[
103
- prompt, negative_prompt, seed, randomize_seed, width, height,
104
- guidance_scale, num_inference_steps,
105
- *tag_checkboxes,
106
- active_tab
107
  ],
108
  outputs=[result, seed, prompt_info]
109
  )
110
 
 
111
  demo.queue().launch()
 
100
  run_button.click(
101
  fn=infer,
102
  inputs=[
103
+ prompt, negative_prompt, seed, randomize_seed,
104
+ width, height, guidance_scale, num_inference_steps,
105
+ active_tab, # Moved BEFORE *tag_checkboxes
106
+ *tag_checkboxes
107
  ],
108
  outputs=[result, seed, prompt_info]
109
  )
110
 
111
+
112
  demo.queue().launch()