Spaces:
Sleeping
Sleeping
File size: 36,792 Bytes
bc939ab 8f87655 bc939ab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 | import streamlit as st
import pandas as pd
import numpy as np
import plotly.express as px
import time
from utils import (
validate_email,
validate_password_strength,
format_currency,
get_timestamp,
save_chat_session,
load_chat_session,
delete_chat_session,
clear_all_chat_history,
persist_user,
get_persisted_users,
save_active_session,
get_active_session,
clear_active_session,
get_ai_response,
stream_ai_response,
check_ollama_connection,
get_active_backend,
get_all_chat_sessions,
get_faq_response,
is_banking_query
)
st.set_page_config(
page_title="Central Bank AI",
page_icon="π¦",
layout="wide",
initial_sidebar_state="expanded"
)
def apply_custom_style(theme="dark"):
# Define color palette based on theme
if theme == "dark":
colors = {
"bg": "#0B1220",
"card_bg": "#111827",
"text": "#f1f5f9",
"text_secondary": "#94a3b8",
"primary": "#2563EB",
"secondary": "#0ea5e9",
"border": "#1F2937",
"input_bg": "rgba(30, 41, 59, 0.8)",
"shadow": "rgba(0, 0, 0, 0.4)",
"success": "#10B981",
"warning": "#f59e0b",
"danger": "#EF4444",
"sidebar_bg": "#0F172A",
"hover": "rgba(255, 255, 255, 0.05)"
}
else:
colors = {
"bg": "#F8FAFC",
"card_bg": "#FFFFFF",
"text": "#0F172A",
"text_secondary": "#64748B",
"primary": "#1E40AF",
"secondary": "#2563EB",
"border": "#E2E8F0",
"input_bg": "#F8FAFC",
"shadow": "rgba(0, 0, 0, 0.04)",
"success": "#10B981",
"warning": "#d97706",
"danger": "#EF4444",
"sidebar_bg": "#F1F5F9",
"hover": "#EFF6FF"
}
st.session_state.colors = colors
st.markdown(f"""
<style>
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');
/* Global Reset & Typography */
.stApp {{
font-family: 'Inter', sans-serif;
color: {colors['text']};
background-color: {colors['bg']};
}}
h1, h2, h3, h4, h5, h6 {{
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: {colors['text']};
margin-bottom: 0.5rem;
}}
h1 {{ font-size: 32px !important; }}
h2 {{ font-size: 24px !important; }}
h3 {{ font-size: 18px !important; }}
/* Layout Logic */
.main .block-container {{
padding-top: 5rem !important;
padding-bottom: 2rem !important;
max-width: 1400px;
margin: 0 auto;
}}
header[data-testid="stHeader"] {{
background: transparent !important;
box-shadow: none !important;
height: 0 !important;
}}
[data-testid="stAppToolbar"] {{
display: none !important;
}}
[data-testid="stSidebarCollapseButton"] {{
visibility: hidden !important;
opacity: 0 !important;
}}
/* Footer still hidden */
footer {{
display: none !important;
}}
/* Global Sidebar Styling */
/* Global Sidebar Styling - Force visibility and width */
section[data-testid="stSidebar"] {{
background: {colors.get('sidebar_bg', '#F1F5F9')} !important;
border-right: 1px solid {colors['border']} !important;
min-width: 320px !important;
width: 320px !important;
visibility: visible !important;
display: block !important;
}}
/* Ensure child containers allow visibility */
[data-testid="stSidebarContent"] {{
visibility: visible !important;
}}
/* Hide the 'collapsed' hamburger icon in the top left if it appears */
[data-testid="collapsedControl"] {{
display: none !important;
}}
/* Remove default sidebar top padding */
section[data-testid="stSidebar"] > div:first-child {{
padding-top: 2rem !important;
}}
/* Custom Scrollbar */
::-webkit-scrollbar {{
width: 6px;
}}
::-webkit-scrollbar-thumb {{
background: {colors['border']};
border-radius: 10px;
}}
/* Section Titles */
.section-title {{
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #64748b;
margin-bottom: 8px;
margin-top: 24px;
}}
/* User Card */
.user-card {{
background: {colors['card_bg']};
padding: 14px;
border-radius: 12px;
border: 1px solid {colors['border']};
margin-bottom: 24px;
display: flex;
align-items: center;
gap: 12px;
transition: all 0.2s ease;
}}
.user-card:hover {{
transform: translateX(2px);
background: {colors.get('hover', 'rgba(255,255,255,0.05)')};
}}
.user-avatar {{
background: {colors['primary']};
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
}}
.user-name {{
font-weight: 600;
font-size: 14px;
color: {colors['text']};
}}
.user-email {{
font-size: 12px;
color: {colors['text_secondary']};
}}
/* Navigation / Sidebar Buttons */
.sidebar-btn {{
padding: 10px 14px;
border-radius: 8px;
color: #cbd5e1;
transition: all 0.2s ease;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
}}
.sidebar-btn:hover {{
background-color: {colors.get('hover', 'rgba(255,255,255,0.05)')};
color: white;
transform: translateX(2px);
}}
.sidebar-active {{
background-color: rgba(37, 99, 235, 0.15);
border-left: 3px solid {colors['primary']};
color: white;
border-radius: 0 8px 8px 0;
}}
/* Chat History */
.chat-history-container {{
max-height: 250px;
overflow-y: auto;
margin-bottom: 24px;
padding-right: 4px;
}}
.chat-item {{
padding: 8px 10px;
border-radius: 8px;
color: #cbd5e1;
transition: all 0.2s ease;
font-size: 0.9rem;
margin-bottom: 4px;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}}
.chat-item:hover {{
background: {colors.get('hover', 'rgba(255,255,255,0.05)')};
color: white;
transform: translateX(2px);
}}
/* Logout Button */
.logout-btn button {{
background: transparent !important;
border: 1px solid {colors['danger']} !important;
color: {colors['danger']} !important;
border-radius: 8px !important;
transition: all 0.2s ease !important;
width: 100%;
padding: 8px !important;
}}
.logout-btn button:hover {{
background: {colors['danger']} !important;
color: white !important;
}}
/* AI Status Badge */
.status-badge {{
padding: 8px 12px;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
margin-top: 8px;
border: 1px solid {colors['border']};
}}
.status-online {{
background: rgba(16, 185, 129, 0.1);
color: #10b981;
border-color: rgba(16, 185, 129, 0.2);
}}
.status-offline {{
background: rgba(239, 68, 68, 0.1);
color: #ef4444;
border-color: rgba(239, 68, 68, 0.2);
}}
/* Card Component */
.bank-card {{
background-color: {colors['card_bg']};
border: 1px solid {colors['border']};
border-radius: 14px;
padding: 24px;
box-shadow: 0 4px 15px {colors['shadow']};
margin-bottom: 16px;
}}
/* Primary Buttons */
.stButton>button {{
border-radius: 8px;
transition: 0.3s ease;
}}
.stButton>button:hover {{
transform: translateY(-2px);
}}
/* Chat Interface Styling */
.user-bubble {{
background: {colors['primary']};
color: white;
padding: 12px 20px;
border-radius: 20px 20px 4px 20px;
margin-bottom: 12px;
max-width: 85%;
margin-left: auto;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
font-size: 0.95rem;
line-height: 1.5;
}}
.ai-bubble {{
background: {colors['card_bg']};
color: {colors['text']};
padding: 12px 20px;
border-radius: 20px 20px 20px 4px;
margin-bottom: 12px;
max-width: 85%;
border: 1px solid {colors['border']};
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
font-size: 0.95rem;
line-height: 1.5;
}}
/* Modern Chat Input Styling */
section[data-testid="stChatInput"] {{
padding-bottom: 2rem !important;
}}
section[data-testid="stChatInput"] > div {{
background-color: transparent !important;
}}
section[data-testid="stChatInput"] textarea {{
background-color: {colors['input_bg']} !important;
border: 1px solid {colors['border']} !important;
border-radius: 25px !important;
padding: 12px 20px !important;
color: {colors['text']} !important;
box-shadow: 0 4px 12px {colors['shadow']} !important;
transition: all 0.3s ease;
}}
section[data-testid="stChatInput"] textarea:focus {{
border-color: {colors['primary']} !important;
box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}}
/* Disable default Streamlit fading on rapid updates */
div[data-testid="stVerticalBlock"] > div,
div[data-testid="stVerticalBlock"],
div.element-container,
div.stMarkdown,
div[data-testid="stMarkdownContainer"],
div[data-testid="stChatMessage"] {{
transition: none !important;
animation: none !important;
opacity: 1 !important;
}}
* {{
animation: none !important;
}}
</style>
""", unsafe_allow_html=True)
def init_session_state():
if "users" not in st.session_state:
st.session_state.users = get_persisted_users()
if "logged_in" not in st.session_state:
last_user = get_active_session()
if last_user and last_user in st.session_state.users:
st.session_state.logged_in = True
st.session_state.username = last_user
st.session_state.email = st.session_state.users[last_user]["email"]
else:
st.session_state.logged_in = False
if "theme" not in st.session_state:
st.session_state.theme = "light"
apply_custom_style(st.session_state.theme)
if "username" not in st.session_state:
st.session_state.username = ""
if "email" not in st.session_state:
st.session_state.email = ""
if "current_page" not in st.session_state:
st.session_state.current_page = "login"
if "chat_sessions" not in st.session_state:
if st.session_state.logged_in and st.session_state.username:
st.session_state.chat_sessions = get_all_chat_sessions(st.session_state.username)
else:
st.session_state.chat_sessions = []
if "current_chat_id" not in st.session_state:
st.session_state.current_chat_id = None
if "messages" not in st.session_state:
st.session_state.messages = []
if "balance" not in st.session_state:
st.session_state.balance = 850000.00
if "interest_rate" not in st.session_state:
st.session_state.interest_rate = 6.5
if "accrued_interest" not in st.session_state:
st.session_state.accrued_interest = 55000.00
if "active_loans" not in st.session_state:
st.session_state.active_loans = 2
if "total_loan_amount" not in st.session_state:
st.session_state.total_loan_amount = 3500000.00
init_session_state()
def login(username, password):
if username in st.session_state.users:
if st.session_state.users[username]["password"] == password:
st.session_state.logged_in = True
st.session_state.username = username
st.session_state.email = st.session_state.users[username]["email"]
st.session_state.current_page = "dashboard"
st.session_state.chat_sessions = get_all_chat_sessions(username)
save_active_session(username)
return True
return False
def signup(username, email, password):
if username in st.session_state.users:
return False, "Username already exists"
st.session_state.users[username] = {
"email": email,
"password": password
}
persist_user(username, email, password)
return True, "Account created successfully!"
def logout():
st.session_state.logged_in = False
st.session_state.username = ""
st.session_state.email = ""
st.session_state.current_page = "login"
st.session_state.messages = []
st.session_state.current_chat_id = None
clear_active_session()
def get_mock_transactions():
dates = pd.date_range(end=pd.Timestamp.now(), periods=30, freq='D')
types = []
amounts = []
cats = []
for _ in range(30):
if np.random.random() > 0.8:
types.append("Income")
cats.append(np.random.choice(["Salary", "Investment", "Refund"]))
amounts.append(round(float(np.random.uniform(5000, 25000)), 2))
else:
types.append("Expense")
cats.append(np.random.choice(["Food", "Rent", "Shopping", "Transport", "Entertainment", "Utilities"]))
amounts.append(round(float(np.random.uniform(100, 5000)), 2))
data = {"Date": dates, "Category": cats, "Type": types, "Amount": amounts}
return pd.DataFrame(data)
def show_login_page():
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.title("π¦ Central Bank AI")
st.subheader("Login")
st.divider()
with st.form("login_form"):
username = st.text_input("Username", placeholder="Enter your username")
password = st.text_input("Password", type="password", placeholder="Enter your password")
submit = st.form_submit_button("Login", use_container_width=True, type="primary")
if submit:
if login(username, password):
st.success("Login successful!")
st.rerun()
else:
st.error("Invalid username or password")
st.divider()
if st.button("Don't have an account? Sign Up", use_container_width=True):
st.session_state.current_page = "signup"
st.rerun()
def show_signup_page():
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
st.title("π¦ Central Bank AI")
st.subheader("Create Account")
st.divider()
with st.form("signup_form"):
username = st.text_input("Username", placeholder="Choose a username")
email = st.text_input("Email", placeholder="Enter your email")
password = st.text_input("Password", type="password", placeholder="Create a password")
confirm_password = st.text_input("Confirm Password", type="password", placeholder="Re-enter your password")
submit = st.form_submit_button("Create Account", use_container_width=True, type="primary")
if submit:
if not username or not email or not password or not confirm_password:
st.error("All fields are required")
elif password != confirm_password:
st.error("Passwords do not match")
else:
success, msg = signup(username, email, password)
if success:
st.success(msg)
st.info("Please login with your credentials")
st.session_state.current_page = "login"
time.sleep(1)
st.rerun()
else:
st.error(msg)
st.divider()
if st.button("Already have an account? Login", use_container_width=True):
st.session_state.current_page = "login"
st.rerun()
def show_dashboard():
with st.sidebar:
st.markdown(f"""
<div style="padding: 0 0 1rem 0; text-align: center;">
<div style="font-size: 2.5rem; margin-bottom: 0.5rem;">π¦</div>
<h2 style="margin: 0; font-size: 1.3rem !important; font-family: 'Poppins', sans-serif;">Central Bank AI</h2>
</div>
""", unsafe_allow_html=True)
# User Info Section (New CSS Class)
st.markdown(f"""
<div class="user-card">
<div class="user-avatar">
{st.session_state.username[0].upper() if st.session_state.username else 'U'}
</div>
<div>
<div class="user-name">{st.session_state.username}</div>
<div class="user-email">{st.session_state.email}</div>
</div>
</div>
""", unsafe_allow_html=True)
if "current_tab" not in st.session_state:
st.session_state.current_tab = "Dashboard"
st.markdown("<div class='section-title'>Navigation</div>", unsafe_allow_html=True)
nav_btn_style1 = "primary" if st.session_state.current_tab == "Dashboard" else "secondary"
nav_btn_style2 = "primary" if st.session_state.current_tab == "Banking Assistant" else "secondary"
if st.button("π Dashboard", use_container_width=True, type=nav_btn_style1):
st.session_state.current_tab = "Dashboard"
st.rerun()
if st.button(" Banking Assistant", use_container_width=True, type=nav_btn_style2):
st.session_state.current_tab = "Banking Assistant"
st.rerun()
page = st.session_state.current_tab
st.markdown("<div style='margin-bottom: 24px;'></div>", unsafe_allow_html=True)
st.markdown("<div class='logout-btn'>", unsafe_allow_html=True)
if st.button("Logout", use_container_width=True):
logout()
st.rerun()
st.markdown("</div>", unsafe_allow_html=True)
# Push Chat History to the bottom
st.markdown("<div style='flex-grow: 1; min-height: 40px;'></div>", unsafe_allow_html=True)
st.markdown("<div class='section-title'>Recent Chats</div>", unsafe_allow_html=True)
new_col, clear_col = st.columns([1, 1])
with new_col:
if st.button("β New Chat", use_container_width=True):
st.session_state.messages = []
st.session_state.current_chat_id = None
st.rerun()
with clear_col:
if st.session_state.chat_sessions and st.button("ποΈ Clear All", use_container_width=True):
clear_all_chat_history(st.session_state.username, st.session_state)
st.session_state.messages = []
st.session_state.current_chat_id = None
st.rerun()
# Chat Sessions
st.markdown("<div class='chat-history-container'>", unsafe_allow_html=True)
if st.session_state.chat_sessions:
# Display only top 5 initially, or all if "show_all_chats" is True
if "show_all_chats" not in st.session_state:
st.session_state.show_all_chats = False
display_chats = st.session_state.chat_sessions if st.session_state.show_all_chats else st.session_state.chat_sessions[:5]
for chat in display_chats:
preview = chat.get('preview', 'No messages')
chat_id = chat['session_id']
chat_col1, chat_col2 = st.columns([4, 1])
with chat_col1:
if st.button(f"π {preview}", key=f"chat_{chat_id}", use_container_width=True):
st.session_state.messages = chat['messages']
st.session_state.current_chat_id = chat_id
st.rerun()
with chat_col2:
if st.button("β", key=f"del_{chat_id}", use_container_width=True):
delete_chat_session(st.session_state.username, st.session_state, chat_id)
if st.session_state.current_chat_id == chat_id:
st.session_state.messages = []
st.session_state.current_chat_id = None
st.rerun()
# Show "See all" button if there are more than 5 chats
if len(st.session_state.chat_sessions) > 5:
if st.session_state.show_all_chats:
if st.button("See Less", use_container_width=True):
st.session_state.show_all_chats = False
st.rerun()
else:
if st.button(f"See All ({len(st.session_state.chat_sessions)})", use_container_width=True):
st.session_state.show_all_chats = True
st.rerun()
else:
st.caption("No recent chats")
st.markdown("</div>", unsafe_allow_html=True)
st.title("Dashboard" if page == "Dashboard" else "Banking Assistant")
if page == "Dashboard":
st.markdown("## π Dashboard Overview")
# Custom Metric Cards
st.markdown(f"""
<div style="display: flex; gap: 20px; margin-bottom: 2rem;">
<div class="bank-card" style="flex: 1; text-align: center;">
<div style="color: {st.session_state.colors['text_secondary']}; font-size: 0.9rem; margin-bottom: 8px;">Account Balance</div>
<div style="font-size: 1.8rem; font-weight: 700;">{format_currency(st.session_state.balance)}</div>
</div>
<div class="bank-card" style="flex: 1; text-align: center;">
<div style="color: {st.session_state.colors['text_secondary']}; font-size: 0.9rem; margin-bottom: 8px;">Interest Rate</div>
<div style="font-size: 1.8rem; font-weight: 700;">{st.session_state.interest_rate}%</div>
</div>
<div class="bank-card" style="flex: 1; text-align: center;">
<div style="color: {st.session_state.colors['text_secondary']}; font-size: 0.9rem; margin-bottom: 8px;">Active Loans</div>
<div style="font-size: 1.8rem; font-size: 1.8rem; font-weight: 700;">{st.session_state.active_loans}</div>
</div>
</div>
""", unsafe_allow_html=True)
st.markdown("<div style='margin-bottom: 2rem;'></div>", unsafe_allow_html=True)
# 2 & 3. Insights & Health Score
col_health, col_insights = st.columns(2)
with col_health:
st.markdown(f"""
<div class="bank-card" style="height: 100%;">
<h3 style="margin-top:0;">π’ Financial Health Score</h3>
<div style="font-size: 2.5rem; font-weight: 700; color: {st.session_state.colors['primary']};">78 <span style="font-size: 1rem; color: {st.session_state.colors['text_secondary']};">/ 100</span></div>
<div style="margin-top: 10px; font-size: 0.95rem; color: {st.session_state.colors['text_secondary']};">
<div style="margin-bottom: 4px;">β Good savings ratio</div>
<div style="margin-bottom: 4px;">β Low EMI burden</div>
<div>β Stable spending</div>
</div>
</div>
""", unsafe_allow_html=True)
with col_insights:
st.markdown(f"""
<div class="bank-card" style="height: 100%;">
<h3 style="margin-top:0;">π‘ Smart Insights</h3>
<div style="margin-top: 15px; font-size: 0.95rem; line-height: 1.6;">
<div style="margin-bottom: 8px;">π This month your spending increased by <b>12%</b> compared to last month.</div>
<div style="margin-bottom: 8px;">ποΈ Most spending category: <b>Shopping</b>.</div>
<div>β οΈ EMI due in <b>5 days</b>.</div>
</div>
</div>
""", unsafe_allow_html=True)
st.markdown("<div style='margin-bottom: 1rem;'></div>", unsafe_allow_html=True)
# 4 & 5. Net Worth & Upcoming Dues
col_nw, col_dues = st.columns(2)
with col_nw:
st.markdown(f"""
<div class="bank-card" style="height: 100%;">
<h3 style="margin-top:0;">π Net Worth</h3>
<div style="display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 1rem;">
<span style="color: {st.session_state.colors['text_secondary']};">Assets (Savings + FD + Investments)</span>
<span style="font-weight: 600; color: {st.session_state.colors['success']};">{format_currency(st.session_state.balance + 3500000)}</span>
</div>
<div style="display: flex; justify-content: space-between; margin-bottom: 16px; border-bottom: 1px solid {st.session_state.colors['border']}; padding-bottom: 12px; font-size: 1rem;">
<span style="color: {st.session_state.colors['text_secondary']};">Liabilities (Loans + Credit Dues)</span>
<span style="font-weight: 600; color: {st.session_state.colors['danger']};">{format_currency(st.session_state.total_loan_amount)}</span>
</div>
<div style="display: flex; justify-content: space-between; align-items: center;">
<span style="font-weight: 600; font-size: 1.1rem;">Total Net Worth</span>
<span style="font-size: 1.5rem; font-weight: 700; color: {st.session_state.colors['primary']};">{format_currency(st.session_state.balance + 3500000 - st.session_state.total_loan_amount)}</span>
</div>
</div>
""", unsafe_allow_html=True)
with col_dues:
st.markdown(f"""
<div class="bank-card" style="height: 100%;">
<h3 style="margin-top:0;">π
Upcoming Payments</h3>
<div style="margin-top: 15px; font-size: 1rem; line-height: 1.6;">
<div style="display: flex; justify-content: space-between; margin-bottom: 12px;">
<span>Home Loan EMI</span>
<div><span style="font-weight: 600;">βΉ12,000</span> <span style="font-size: 0.85rem; color: {st.session_state.colors['text_secondary']};">due 5 Mar</span></div>
</div>
<div style="display: flex; justify-content: space-between; margin-bottom: 12px;">
<span>Credit Card Bill</span>
<div><span style="font-weight: 600;">βΉ8,400</span> <span style="font-size: 0.85rem; color: {st.session_state.colors['text_secondary']};">due 9 Mar</span></div>
</div>
<div style="display: flex; justify-content: space-between;">
<span>Electricity Bill</span>
<div><span style="font-weight: 600;">βΉ1,500</span> <span style="font-size: 0.85rem; color: {st.session_state.colors['text_secondary']};">due 2 Mar</span></div>
</div>
</div>
</div>
""", unsafe_allow_html=True)
st.divider()
# Visualizations
col_left, col_right = st.columns([2, 1])
df = get_mock_transactions()
with col_left:
st.write("### π Income vs Expenses")
daily_data = df.groupby(['Date', 'Type'])['Amount'].sum().reset_index()
fig_bar = px.bar(
daily_data,
x='Date',
y='Amount',
color='Type',
barmode='group',
color_discrete_map={"Income": st.session_state.colors['success'], "Expense": st.session_state.colors['danger']}
)
fig_bar.update_layout(margin=dict(t=0, b=0, l=0, r=0), height=300, paper_bgcolor="rgba(0,0,0,0)", plot_bgcolor="rgba(0,0,0,0)", showlegend=True, legend=dict(orientation="h", yanchor="bottom", y=1.02, xanchor="right", x=1))
if st.session_state.theme == "dark":
fig_bar.update_layout(font_color="white")
else:
fig_bar.update_layout(font_color="black")
st.plotly_chart(fig_bar, use_container_width=True)
with col_right:
st.write("### π° Expenses Breakdown")
expense_df = df[df['Type'] == 'Expense']
if expense_df.empty:
st.info("No expenses recorded yet.")
else:
category_data = expense_df.groupby('Category')['Amount'].sum().reset_index()
fig = px.pie(
category_data,
values='Amount',
names='Category',
hole=0.4,
color_discrete_sequence=[st.session_state.colors['primary'], st.session_state.colors['secondary'], '#38bdf8', '#818cf8', '#a78bfa', '#f472b6']
)
fig.update_layout(
margin=dict(t=0, b=0, l=0, r=0),
height=300,
showlegend=False
)
# Ensure transparent background for the chart
fig.update_layout(paper_bgcolor="rgba(0,0,0,0)", plot_bgcolor="rgba(0,0,0,0)")
if st.session_state.theme == "dark":
fig.update_layout(font_color="white")
else:
fig.update_layout(font_color="black")
st.plotly_chart(fig, use_container_width=True)
st.divider()
# Consolidated Transactions
st.markdown("### π Recent Transaction History")
st.dataframe(
df.sort_values(by="Date", ascending=False),
use_container_width=True,
hide_index=True
)
else:
is_connected = check_ollama_connection()
col_h1, col_h2 = st.columns([4, 1])
with col_h2:
backend = get_active_backend()
if is_connected:
label = "βοΈ Groq AI" if backend == "groq" else "π’ Ollama"
st.markdown(f'<div class="status-badge status-online"><span>β</span> {label}</div>', unsafe_allow_html=True)
else:
st.markdown('<div class="status-badge status-offline"><span>β</span> Offline</div>', unsafe_allow_html=True)
st.markdown("<div style='margin-top: 1rem;'></div>", unsafe_allow_html=True)
# FAQ Suggestions
st.markdown("<div style='margin-bottom: 10px; font-size: 0.9rem; color: #64748b;'><strong>Popular Questions:</strong></div>", unsafe_allow_html=True)
faq_row1_col1, faq_row1_col2, faq_row1_col3 = st.columns(3)
with faq_row1_col1:
if st.button("π° Balance?", use_container_width=True):
st.session_state.faq_trigger = "What is my balance?"
st.rerun()
with faq_row1_col2:
if st.button("π Interest?", use_container_width=True):
st.session_state.faq_trigger = "What are the current interest rates?"
st.rerun()
with faq_row1_col3:
if st.button("π Support", use_container_width=True):
st.session_state.faq_trigger = "How do I contact customer care?"
st.rerun()
faq_row2_col1, faq_row2_col2, faq_row2_col3 = st.columns(3)
with faq_row2_col1:
if st.button("π Hours", use_container_width=True):
st.session_state.faq_trigger = "What are the working hours?"
st.rerun()
with faq_row2_col2:
if st.button("π¦ Min Bal", use_container_width=True):
st.session_state.faq_trigger = "What is the minimum balance?"
st.rerun()
with faq_row2_col3:
if st.button("π FD Rates", use_container_width=True):
st.session_state.faq_trigger = "What are the FD rates?"
st.rerun()
chat_container = st.container(height=400, border=False)
with chat_container:
for message in st.session_state.messages:
role = message["role"]
if role == "user":
st.markdown(f'<div class="user-bubble">{message["content"]}</div>', unsafe_allow_html=True)
else:
st.markdown(f'<div class="ai-bubble">{message["content"]}</div>', unsafe_allow_html=True)
prompt = st.chat_input("Ask about your finances or banking services...")
if getattr(st.session_state, 'faq_trigger', None):
prompt = st.session_state.faq_trigger
st.session_state.faq_trigger = None
if prompt:
st.session_state.messages.append({"role": "user", "content": prompt})
with chat_container:
st.markdown(f'<div class="user-bubble">{prompt}</div>', unsafe_allow_html=True)
faq_response = get_faq_response(prompt)
res_box = st.empty()
full_response = ""
if faq_response:
full_response = faq_response
res_box.markdown(f'<div class="ai-bubble">{full_response}</div>', unsafe_allow_html=True)
elif is_banking_query(prompt):
if check_ollama_connection():
last_update_time = time.time()
for chunk in stream_ai_response(prompt, history=st.session_state.messages[:-1]):
if chunk:
full_response += chunk
current_time = time.time()
if current_time - last_update_time > 0.05:
res_box.markdown(f'<div class="ai-bubble">{full_response}β</div>', unsafe_allow_html=True)
last_update_time = current_time
res_box.markdown(f'<div class="ai-bubble">{full_response}</div>', unsafe_allow_html=True)
else:
full_response = "I'm having trouble reaching the AI engine right now. However, I can still help with basic queries like your balance or interest rates. How can I assist you?"
res_box.markdown(f'<div class="ai-bubble">{full_response}</div>', unsafe_allow_html=True)
else:
# Non-banking refusal
full_response = "I am a banking assistant and can only answer banking-related queries. Please feel free to ask about accounts, loans, cards, or other financial services."
res_box.markdown(f'<div class="ai-bubble">{full_response}</div>', unsafe_allow_html=True)
if not full_response:
full_response = "I'm having trouble reaching the main AI engine right now. However, I can still help with basic queries like your balance or interest rates. How can I assist you?"
st.session_state.messages.append({"role": "assistant", "content": full_response})
# Save using the persistent utility
new_id = save_chat_session(st.session_state.username, st.session_state, st.session_state.messages, st.session_state.current_chat_id)
if not st.session_state.current_chat_id:
st.session_state.current_chat_id = new_id
st.rerun()
if not st.session_state.logged_in:
if st.session_state.current_page == "login":
show_login_page()
elif st.session_state.current_page == "signup":
show_signup_page()
else:
show_dashboard()
|