Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -182,16 +182,17 @@ with gr.Blocks(css=css) as demo:
|
|
| 182 |
use_output_btn = gr.Button("↗️ Use as image 1", variant="secondary", size="sm", visible=False)
|
| 183 |
|
| 184 |
with gr.Row():
|
| 185 |
-
with gr.
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
|
|
|
| 195 |
|
| 196 |
with gr.Accordion("Advanced Settings", open=False):
|
| 197 |
# Negative prompt UI element is removed here
|
|
|
|
| 182 |
use_output_btn = gr.Button("↗️ Use as image 1", variant="secondary", size="sm", visible=False)
|
| 183 |
|
| 184 |
with gr.Row():
|
| 185 |
+
with gr.Column():
|
| 186 |
+
with gr.Row():
|
| 187 |
+
prompt = gr.Text(
|
| 188 |
+
label="Prompt",
|
| 189 |
+
show_label=False,
|
| 190 |
+
placeholder="describe the edit instruction",
|
| 191 |
+
container=False,
|
| 192 |
+
lines=5
|
| 193 |
+
)
|
| 194 |
+
with gr.Row():
|
| 195 |
+
run_button = gr.Button("Edit!", variant="primary")
|
| 196 |
|
| 197 |
with gr.Accordion("Advanced Settings", open=False):
|
| 198 |
# Negative prompt UI element is removed here
|