Update app.py
Browse files
app.py
CHANGED
@@ -171,7 +171,7 @@ theme = gr.themes.Monochrome(
|
|
171 |
|
172 |
)
|
173 |
# Setup the Gradio Blocks interface with custom layout components
|
174 |
-
with gr.Blocks(theme=theme
|
175 |
with gr.Row(equal_height=True):
|
176 |
with gr.Column():
|
177 |
gr.Image("ally.png", container = False, show_share_button = False, show_download_button = False, label="output", show_label=True, elem_id="output_image", scale=0, width=500)
|
|
|
171 |
|
172 |
)
|
173 |
# Setup the Gradio Blocks interface with custom layout components
|
174 |
+
with gr.Blocks(theme=theme) as demo:
|
175 |
with gr.Row(equal_height=True):
|
176 |
with gr.Column():
|
177 |
gr.Image("ally.png", container = False, show_share_button = False, show_download_button = False, label="output", show_label=True, elem_id="output_image", scale=0, width=500)
|