Spaces:
Running
on
Zero
Running
on
Zero
update app
Browse files
app.py
CHANGED
|
@@ -170,12 +170,13 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
|
|
| 170 |
with gr.Row(equal_height=True):
|
| 171 |
with gr.Column():
|
| 172 |
input_image = gr.Image(label="Upload Image", type="pil")
|
| 173 |
-
|
| 174 |
-
|
| 175 |
-
|
| 176 |
-
|
| 177 |
-
|
| 178 |
-
|
|
|
|
| 179 |
|
| 180 |
run_button = gr.Button("Run", variant="primary")
|
| 181 |
|
|
|
|
| 170 |
with gr.Row(equal_height=True):
|
| 171 |
with gr.Column():
|
| 172 |
input_image = gr.Image(label="Upload Image", type="pil")
|
| 173 |
+
|
| 174 |
+
with gr.Row():
|
| 175 |
+
prompt = gr.Text(
|
| 176 |
+
label="Edit Prompt",
|
| 177 |
+
show_label=True,
|
| 178 |
+
placeholder="e.g., transform into anime",
|
| 179 |
+
)
|
| 180 |
|
| 181 |
run_button = gr.Button("Run", variant="primary")
|
| 182 |
|