Spaces:
Sleeping
Sleeping
Commit
·
a12d1d7
1
Parent(s):
74eb4ce
Update app.py
Browse files
app.py
CHANGED
@@ -193,12 +193,18 @@ with gr.Blocks(css=css) as demo:
|
|
193 |
# )
|
194 |
generate_bt = gr.Button("Generate", scale=1)
|
195 |
with gr.Row():
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
# with gr.Column():
|
203 |
# image_input = gr.Image(
|
204 |
# sources=["upload", "webcam", "clipboard"],
|
@@ -207,6 +213,7 @@ with gr.Blocks(css=css) as demo:
|
|
207 |
# )
|
208 |
with gr.Column():
|
209 |
image = gr.Image(type="filepath")
|
|
|
210 |
with gr.Accordion("Advanced options", open=False):
|
211 |
strength = gr.Slider(
|
212 |
label="Strength",
|
|
|
193 |
# )
|
194 |
generate_bt = gr.Button("Generate", scale=1)
|
195 |
with gr.Row():
|
196 |
+
neg_prompt = gr.Textbox(
|
197 |
+
placeholder="Insert your negative prompt here:",
|
198 |
+
scale=5,
|
199 |
+
container=False,
|
200 |
+
)
|
201 |
+
with gr.Row():
|
202 |
+
# with gr.Column():
|
203 |
+
# neg_prompt = gr.Textbox(
|
204 |
+
# placeholder="Insert your negative prompt here:",
|
205 |
+
# scale=5,
|
206 |
+
# container=False,
|
207 |
+
# )
|
208 |
# with gr.Column():
|
209 |
# image_input = gr.Image(
|
210 |
# sources=["upload", "webcam", "clipboard"],
|
|
|
213 |
# )
|
214 |
with gr.Column():
|
215 |
image = gr.Image(type="filepath")
|
216 |
+
with gr.Column():
|
217 |
with gr.Accordion("Advanced options", open=False):
|
218 |
strength = gr.Slider(
|
219 |
label="Strength",
|