HelloAI1 commited on
Commit
614fcda
·
verified ·
1 Parent(s): c44b6b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -177,7 +177,7 @@ with gr.Blocks() as welcome_screen:
177
  start_button = gr.Button("Get Started", variant='primary', elem_id="start-button")
178
 
179
  # Connect Welcome Screen to Generation Screen
180
- start_button.click(fn=start_generation, outputs=demo)
181
 
182
  # Main Generation Screen (Now use the defined 'demo')
183
  with demo:
@@ -233,4 +233,4 @@ with demo:
233
  text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
234
 
235
  # Launch the Gradio app
236
- welcome_screen.launch(max_threads=128)
 
177
  start_button = gr.Button("Get Started", variant='primary', elem_id="start-button")
178
 
179
  # Connect Welcome Screen to Generation Screen
180
+ start_button.click(fn=start_generation, outputs=welcome_screen) # Output welcome_screen
181
 
182
  # Main Generation Screen (Now use the defined 'demo')
183
  with demo:
 
233
  text_button.click(flip_text, inputs=[prompt, negative_prompt, model, steps, sampler, cfg_scale, width, height, seed], outputs=image_output)
234
 
235
  # Launch the Gradio app
236
+ welcome_screen.launch(max_threads=128)