Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,10 @@ css = """
|
|
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 |
with gr.Column(elem_id="prompt-container"):
|
@@ -82,8 +85,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
|
|
82 |
|
83 |
with gr.Row():
|
84 |
text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
|
85 |
-
|
86 |
-
image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
|
87 |
|
88 |
text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength], outputs=image_output)
|
89 |
|
|
|
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"):
|
|
|
85 |
|
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 |
|