Update app.py
Browse files
app.py
CHANGED
|
@@ -273,9 +273,9 @@ with gr.Blocks(
|
|
| 273 |
with gr.Row(): # Use a row for better layout on wider screens
|
| 274 |
with gr.Column(scale=2): # Input takes more space
|
| 275 |
input_problem.render()
|
| 276 |
-
with gr.Column(scale=1):
|
| 277 |
-
gr.Markdown("Click to start the analysis:")
|
| 278 |
-
process_button
|
| 279 |
|
| 280 |
|
| 281 |
gr.Markdown("---") # Separator for visual clarity
|
|
|
|
| 273 |
with gr.Row(): # Use a row for better layout on wider screens
|
| 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
|