Deadmon commited on
Commit
9ac99c9
·
verified ·
1 Parent(s): f96747a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -65,11 +65,10 @@ css = """
65
  """
66
 
67
  with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
68
-
69
- with gr.Row():
70
- image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
71
 
72
  with gr.Column(elem_id="app-container"):
 
 
73
  with gr.Row():
74
  with gr.Column(elem_id="prompt-container"):
75
  with gr.Row():
@@ -86,7 +85,6 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
86
  with gr.Row():
87
  text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
88
 
89
-
90
  text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength], outputs=image_output)
91
 
92
  app.launch(show_api=False, share=False)
 
65
  """
66
 
67
  with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
 
 
 
68
 
69
  with gr.Column(elem_id="app-container"):
70
+ with gr.Row():
71
+ image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
72
  with gr.Row():
73
  with gr.Column(elem_id="prompt-container"):
74
  with gr.Row():
 
85
  with gr.Row():
86
  text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
87
 
 
88
  text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength], outputs=image_output)
89
 
90
  app.launch(show_api=False, share=False)