fix: shrink upload box 50%, stack tips list on separate lines
Browse filesCo-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -331,20 +331,22 @@ Upload your credit card statements and uncover what your spending is really tell
|
|
| 331 |
""")
|
| 332 |
|
| 333 |
with gr.Row():
|
| 334 |
-
with gr.Column(scale=
|
| 335 |
file_upload = gr.File(
|
| 336 |
file_count="multiple",
|
| 337 |
label="Upload Statements (PDF, CSV, XLS, XLSX, DOCX)",
|
| 338 |
file_types=[".pdf", ".csv", ".xls", ".xlsx", ".docx"],
|
|
|
|
| 339 |
)
|
| 340 |
with gr.Column(scale=1):
|
| 341 |
-
gr.
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
π‘ 1 statement β basic insights only
|
| 345 |
-
π 6 months β recurring detection
|
| 346 |
-
π’ 12 months β full annual cost view
|
| 347 |
π΅ 24+ months β Year-over-Year unlocked
|
|
|
|
| 348 |
""")
|
| 349 |
|
| 350 |
with gr.Accordion("βοΈ Settings", open=False):
|
|
|
|
| 331 |
""")
|
| 332 |
|
| 333 |
with gr.Row():
|
| 334 |
+
with gr.Column(scale=1):
|
| 335 |
file_upload = gr.File(
|
| 336 |
file_count="multiple",
|
| 337 |
label="Upload Statements (PDF, CSV, XLS, XLSX, DOCX)",
|
| 338 |
file_types=[".pdf", ".csv", ".xls", ".xlsx", ".docx"],
|
| 339 |
+
height=120,
|
| 340 |
)
|
| 341 |
with gr.Column(scale=1):
|
| 342 |
+
gr.HTML("""
|
| 343 |
+
<div style="padding:0.5rem 0;">
|
| 344 |
+
<strong>Better results with more data</strong><br><br>
|
| 345 |
+
π‘ 1 statement β basic insights only<br>
|
| 346 |
+
π 6 months β recurring detection<br>
|
| 347 |
+
π’ 12 months β full annual cost view<br>
|
| 348 |
π΅ 24+ months β Year-over-Year unlocked
|
| 349 |
+
</div>
|
| 350 |
""")
|
| 351 |
|
| 352 |
with gr.Accordion("βοΈ Settings", open=False):
|