Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -171,14 +171,13 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
|
|
| 171 |
with gr.Column():
|
| 172 |
input_image = gr.Image(label="Upload Image", type="pil")
|
| 173 |
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
run_button = gr.Button("Run", variant="primary")
|
| 182 |
|
| 183 |
with gr.Column():
|
| 184 |
output_image = gr.Image(label="Output Image", interactive=False, format="png", height=290)
|
|
|
|
| 171 |
with gr.Column():
|
| 172 |
input_image = gr.Image(label="Upload Image", type="pil")
|
| 173 |
|
| 174 |
+
prompt = gr.Text(
|
| 175 |
+
label="Edit Prompt",
|
| 176 |
+
show_label=True,
|
| 177 |
+
placeholder="e.g., transform into anime",
|
| 178 |
+
)
|
| 179 |
+
|
| 180 |
+
run_button = gr.Button("Run", variant="primary")
|
|
|
|
| 181 |
|
| 182 |
with gr.Column():
|
| 183 |
output_image = gr.Image(label="Output Image", interactive=False, format="png", height=290)
|