Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -71,6 +71,10 @@ with gr.Blocks() as casa:
|
|
71 |
|
72 |
submit_btn = gr.Button("Generate!")
|
73 |
submit_btn.click(casa_ai_run_tab1, inputs=inputs, outputs=outputs)
|
|
|
|
|
|
|
|
|
74 |
|
75 |
|
76 |
with gr.Tab("Redesign"):
|
|
|
71 |
|
72 |
submit_btn = gr.Button("Generate!")
|
73 |
submit_btn.click(casa_ai_run_tab1, inputs=inputs, outputs=outputs)
|
74 |
+
gr.Examples(examples=[['example_images/image_0.jpg', 'Living room in bohemian style'],
|
75 |
+
['example_images/image_1.jpg', 'A bauhaus-style living room with black leather sofa'],
|
76 |
+
['example_images/image_2.jpg', 'Modern bedroom with a wooden and round coffee table']],
|
77 |
+
inputs=inputs, outputs=outputs, fn=casa_ai_run_tab1, cache_examples=False)
|
78 |
|
79 |
|
80 |
with gr.Tab("Redesign"):
|