Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
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)
|