Update app.py
Browse files
app.py
CHANGED
@@ -158,9 +158,8 @@ theme = gr.themes.Monochrome(
|
|
158 |
button_primary_background_fill='#054A91',
|
159 |
button_primary_background_fill_dark='#054A91'
|
160 |
)
|
161 |
-
gr.themes.builder()
|
162 |
# Setup the Gradio Blocks interface with custom layout components
|
163 |
-
with gr.Blocks(theme=theme
|
164 |
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)
|
165 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
166 |
with gr.Row():
|
|
|
158 |
button_primary_background_fill='#054A91',
|
159 |
button_primary_background_fill_dark='#054A91'
|
160 |
)
|
|
|
161 |
# Setup the Gradio Blocks interface with custom layout components
|
162 |
+
with gr.Blocks(theme=theme) as demo:
|
163 |
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)
|
164 |
gr.Markdown(welcome_message) # Display the formatted welcome message
|
165 |
with gr.Row():
|