Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -104,6 +104,7 @@ def generate(
|
|
104 |
return image_paths, seed
|
105 |
|
106 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
|
107 |
gr.Markdown(DESCRIPTIONx)
|
108 |
with gr.Row():
|
109 |
prompt = gr.Text(
|
@@ -116,7 +117,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
116 |
run_button = gr.Button("Run ⚡", scale=0)
|
117 |
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
118 |
|
119 |
-
with gr.Accordion("Advanced options", open=
|
120 |
num_images = gr.Slider(
|
121 |
label="Number of Images",
|
122 |
minimum=1,
|
|
|
104 |
return image_paths, seed
|
105 |
|
106 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
107 |
+
with gr.Column(elem_id="col-container"):
|
108 |
gr.Markdown(DESCRIPTIONx)
|
109 |
with gr.Row():
|
110 |
prompt = gr.Text(
|
|
|
117 |
run_button = gr.Button("Run ⚡", scale=0)
|
118 |
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
119 |
|
120 |
+
with gr.Accordion("Advanced options", open=True, visible=True):
|
121 |
num_images = gr.Slider(
|
122 |
label="Number of Images",
|
123 |
minimum=1,
|