Update app.py
Browse files
app.py
CHANGED
@@ -57,9 +57,9 @@ with gr.Blocks(css=css) as demo:
|
|
57 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
58 |
""")
|
59 |
with gr.Row():
|
60 |
-
portrait_in = gr.Image(label="Your
|
61 |
-
result = gr.Image(label="Result")
|
62 |
-
prompt_in = gr.Textbox(label="Prompt
|
63 |
submit_btn = gr.Button("Submit")
|
64 |
|
65 |
gr.Examples(
|
|
|
57 |
<h2 style="text-align: center;">SDXL Auto FaceSwap</h2>
|
58 |
""")
|
59 |
with gr.Row():
|
60 |
+
portrait_in = gr.Image(label="Your source portrait", type="filepath")
|
61 |
+
result = gr.Image(label="Swapped SDXL Result")
|
62 |
+
prompt_in = gr.Textbox(label="Prompt target")
|
63 |
submit_btn = gr.Button("Submit")
|
64 |
|
65 |
gr.Examples(
|