Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ with gr.Blocks() as demo:
|
|
50 |
"""
|
51 |
)
|
52 |
with gr.Row():
|
53 |
-
output = [gr.Image(label=m, min_width=
|
54 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]
|
55 |
for m, o in zip(current_models, output):
|
56 |
gen_event = gen_button.click(gen_fn, [m, txt_input, neg_prompt, image_style], o, concurrency_limit=10)
|
|
|
50 |
"""
|
51 |
)
|
52 |
with gr.Row():
|
53 |
+
output = [gr.Image(label=m, min_width=350) for m in default_models]
|
54 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]
|
55 |
for m, o in zip(current_models, output):
|
56 |
gen_event = gen_button.click(gen_fn, [m, txt_input, neg_prompt, image_style], o, concurrency_limit=10)
|