Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -181,16 +181,16 @@ Image editing and manipulation model guidance-distilled from FLUX.1 Kontext [pro
|
|
| 181 |
)
|
| 182 |
with gr.TabItem("Upload"):
|
| 183 |
input_image_upload = gr.Image(label="Upload the drawing", type="pil")
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
with gr.Row():
|
| 189 |
overlay_image = gr.Image(label="Upload face photo", type="pil")
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
with gr.Row():
|
| 195 |
prompt = gr.Text(
|
| 196 |
label="Prompt",
|
|
|
|
| 181 |
)
|
| 182 |
with gr.TabItem("Upload"):
|
| 183 |
input_image_upload = gr.Image(label="Upload the drawing", type="pil")
|
| 184 |
+
gr.Examples(
|
| 185 |
+
examples=[[img] for img in BASE_EXAMPLES],
|
| 186 |
+
inputs=[input_image_upload],
|
| 187 |
+
)
|
| 188 |
with gr.Row():
|
| 189 |
overlay_image = gr.Image(label="Upload face photo", type="pil")
|
| 190 |
+
gr.Examples(
|
| 191 |
+
examples=[[img] for img in FACE_EXAMPLES],
|
| 192 |
+
inputs=[overlay_image],
|
| 193 |
+
)
|
| 194 |
with gr.Row():
|
| 195 |
prompt = gr.Text(
|
| 196 |
label="Prompt",
|