Update app.py
Browse files
app.py
CHANGED
@@ -274,10 +274,8 @@ with gr.Blocks(
|
|
274 |
with gr.Column(scale=2): # Input takes more space
|
275 |
input_problem.render()
|
276 |
with gr.Column(scale=1): # Button in a smaller column
|
277 |
-
gr.
|
278 |
-
|
279 |
-
process_button := gr.Button("Process Problem", elem_id="process_button")
|
280 |
-
)
|
281 |
|
282 |
|
283 |
gr.Markdown("---") # Separator for visual clarity
|
|
|
274 |
with gr.Column(scale=2): # Input takes more space
|
275 |
input_problem.render()
|
276 |
with gr.Column(scale=1): # Button in a smaller column
|
277 |
+
gr.Markdown("Click to start the analysis:"),
|
278 |
+
process_button := gr.Button("Process Problem", elem_id="process_button")
|
|
|
|
|
279 |
|
280 |
|
281 |
gr.Markdown("---") # Separator for visual clarity
|