Commit
·
db668f6
1
Parent(s):
f7e404a
Update app.py
Browse files
app.py
CHANGED
@@ -219,9 +219,9 @@ with gr.Blocks(theme = 'carlosrosash/bellay_test') as demo:
|
|
219 |
|
220 |
# Define the column for dropdown, explanation, and image
|
221 |
with gr.Row(variant = 'panel'):
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
dropdown.change(update_explanation, inputs=dropdown, outputs=[explanation_box, explanation_image])
|
226 |
|
227 |
# Define the columns for input and output
|
|
|
219 |
|
220 |
# Define the column for dropdown, explanation, and image
|
221 |
with gr.Row(variant = 'panel'):
|
222 |
+
dropdown = gr.Dropdown(list_dropdown, label="Choisissez un artiste ou un style d'écriture")
|
223 |
+
explanation_box = gr.Textbox(label="Explication", type="text", lines=5, interactive=False)
|
224 |
+
explanation_image = gr.HTML(label="Image")
|
225 |
dropdown.change(update_explanation, inputs=dropdown, outputs=[explanation_box, explanation_image])
|
226 |
|
227 |
# Define the columns for input and output
|