ehristoforu commited on
Commit
5dd7553
1 Parent(s): f5b7834

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -169,11 +169,13 @@ with gr.Blocks(css=css, theme="pseudolab/huggingface-korea-theme") as dalle:
169
  """
170
  )
171
 
 
 
 
172
  with gr.Row(elem_id="prompt-container"):
173
  text_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat", lines=1, elem_id="prompt-text-input")
174
  text_button = gr.Button("Generate", variant='primary', elem_id="gen-button")
175
- with gr.Row():
176
- image_output = gr.Image(type="pil", label="Output Image", elem_id="gallery")
177
  with gr.Accordion("Advanced settings", open=False):
178
  negative_prompt = gr.Textbox(label="Negative Prompt", value="text, blurry, fuzziness", lines=1, elem_id="negative-prompt-text-input")
179
 
 
169
  """
170
  )
171
 
172
+ with gr.Row():
173
+ image_output = gr.Image(type="pil", label="Output Image", elem_id="gallery")
174
+
175
  with gr.Row(elem_id="prompt-container"):
176
  text_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat", lines=1, elem_id="prompt-text-input")
177
  text_button = gr.Button("Generate", variant='primary', elem_id="gen-button")
178
+
 
179
  with gr.Accordion("Advanced settings", open=False):
180
  negative_prompt = gr.Textbox(label="Negative Prompt", value="text, blurry, fuzziness", lines=1, elem_id="negative-prompt-text-input")
181