Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,19 +41,19 @@ with gr.Blocks(title="AI Image Remixer") as demo:
|
|
| 41 |
type="filepath", label="Image 1",
|
| 42 |
height=200, width=200,
|
| 43 |
sources=["upload", "clipboard"],
|
| 44 |
-
value="
|
| 45 |
)
|
| 46 |
input_image2 = gr.Image(
|
| 47 |
type="filepath", label="Image 2",
|
| 48 |
height=200, width=200,
|
| 49 |
sources=["upload", "clipboard"],
|
| 50 |
-
value="
|
| 51 |
)
|
| 52 |
input_image3 = gr.Image(
|
| 53 |
type="filepath", label="Image 3",
|
| 54 |
height=200, width=200,
|
| 55 |
sources=["upload", "clipboard"],
|
| 56 |
-
value="
|
| 57 |
)
|
| 58 |
|
| 59 |
prompt_textbox = gr.Textbox(
|
|
|
|
| 41 |
type="filepath", label="Image 1",
|
| 42 |
height=200, width=200,
|
| 43 |
sources=["upload", "clipboard"],
|
| 44 |
+
value="assets/example1.png" # Example image 1
|
| 45 |
)
|
| 46 |
input_image2 = gr.Image(
|
| 47 |
type="filepath", label="Image 2",
|
| 48 |
height=200, width=200,
|
| 49 |
sources=["upload", "clipboard"],
|
| 50 |
+
value="assets/example2.png" # Example image 2
|
| 51 |
)
|
| 52 |
input_image3 = gr.Image(
|
| 53 |
type="filepath", label="Image 3",
|
| 54 |
height=200, width=200,
|
| 55 |
sources=["upload", "clipboard"],
|
| 56 |
+
value="assets/example3.png" # Example image 3
|
| 57 |
)
|
| 58 |
|
| 59 |
prompt_textbox = gr.Textbox(
|