Spaces:
Runtime error
Runtime error
File size: 623 Bytes
6f2497c 5ae5298 6f2497c 5ae5298 6f2497c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # --- WITHIN YOUR GRADIO UI SETUP ---
with gr.Column(scale=1):
gr.Markdown("### 1. Cash Flow")
inc = gr.Number(label="Annual Gross Income ($)", value=180000)
rnt = gr.Number(label="Monthly Rent ($)", value=3100) # Fixed closing parenthesis
bls = gr.Number(label="Monthly Bills ($)", value=800)
life = gr.Number(label="Lifestyle Spend / Paycheck ($)", value=1200)
gr.Markdown("### 2. Debt Priority")
db_b = gr.Number(label="Current Balance ($)", value=14000)
db_r = gr.Number(label="Interest Rate (%)", value=21)
submit_btn = gr.Button("Generate My Roadmap", variant="primary") |