ehristoforu
commited on
Commit
•
1e75837
1
Parent(s):
b2977aa
Update app.py
Browse files
app.py
CHANGED
@@ -86,9 +86,10 @@ with gr.Blocks(css=css) as demo:
|
|
86 |
gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[2])
|
87 |
|
88 |
with gr.Row():
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
92 |
|
93 |
|
94 |
|
|
|
86 |
gallery_output = gr.Gallery(label="Generated images", show_label=False, elem_id="gallery").style(grid=[2])
|
87 |
|
88 |
with gr.Row():
|
89 |
+
with gr.Box():
|
90 |
+
text_prompt = gr.Textbox(show_label=False, placeholder="Enter your prompt", max_lines=1)
|
91 |
+
negative_prompt = gr.Textbox(show_label=False, placeholder="Enter a negative", max_lines=1)
|
92 |
+
text_button = gr.Button("Generate", icon="https://www.gstatic.com/android/keyboard/emojikitchen/20210521/u1fa84/u1fa84_u1fa84.png")
|
93 |
|
94 |
|
95 |
|