AI finance agents that live in your real-life context — capture purchases, learn your habits, find better deals, and coach you into budget-aware, shared saving… Women-first.
FinHack is a women-first personal finance experience + an internal ops dashboard.
- For users: low-friction spending capture, budget-aware guidance, and smarter purchase discovery.
- For teams: a Company View dashboard that monitors trends, anomalies, and system health — with an Employee Assistant that explains what’s happening in plain language.
If budgeting apps feel like homework, this is the opposite: supportive, contextual, and designed to be used every day.
Many people disengage from finance tools because:
- Tracking is tedious (high friction).
- Feedback feels judgmental instead of supportive.
- Most tools assume stable income + solo decision-making.
- Shared saving (roommates/partners/friends) lacks clarity and accountability.
We built Finance Queens to make saving feel encouraging, practical, and repeatable.
Capture purchases naturally (speak instead of type). We extract key details (amount/category/note) and update insights in real-time.
A smart “better deal” layer that compares options and can prioritize women-owned / women-led choices (optional focus mode).
The app learns patterns and nudges users with actionable next steps (not guilt). Think: “here’s one small move today.”
We use fast forecasting on transaction aggregates to predict spend and flag potential overspend risk for the week ahead.
A Streamlit dashboard for the team: users, transactions, alerts, trends, and AI assistants to speed up investigation and support.
| Layer | Technologies | Key use |
|---|---|---|
| Product + UI | Streamlit, Figma | Internal ops dashboard + assistants; fast demo-ready UI |
| Services + APIs | Node.js, Express, TypeScript | LLM backend + endpoints (/v1/transactions, /v1/chat, /v1/mascot, /v1/sales, /v1/health) |
| Data + ML | Snowflake (ML Forecast), Supabase, MongoDB, pandas, NumPy | Aggregates + forecasting + storage + data transforms |
| AI + Infra | Gemini API, Claude 3.7 Sonnet, ElevenLabs, SerpAPI, Docker, Vultr, Terraform, Solana Devnet, Resend | Chat assistants, voice workflows, product search, containers + deployment, optional on-chain audit trail, email reminders |
Note: Some integrations are “prototype/optional” for the hackathon demo, but the architecture is built to support them cleanly.
User (web/mobile)
│
▼
Node/Express API (apps/llm) ──► External AI/Tools (Gemini, ElevenLabs, SerpAPI)
│
├─► Data layer (Supabase / Snowflake)
│
└─► Company View (Streamlit dashboard) (apps/company_view)
└─► Employee Assistant + Support Assistant
Deployment: Docker → Vultr VM (backend + dashboard)
Optional: Solana Devnet audit log (risk flags / receipts / events)
cd apps/llm
npm install
PORT=8080 npm run start
# health check
curl -sS http://127.0.0.1:8080/v1/healthcd apps/company_view
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
streamlit run app.py --server.port 8501Open: http://localhost:8501
Create apps/company_view/.env (dotenv format, KEY=value):
# backend base
LLM_BASE_URL=http://127.0.0.1:8080
# optional live data (dashboard falls back to demo/mock data if not set)
SUPABASE_URL=
SUPABASE_SERVICE_ROLE_KEY=
# assistants
GEMINI_API_KEY=
GEMINI_MODEL=gemini-2.5-flash
# optional
REQUEST_TIMEOUT_S=30We use Snowflake ML Forecast to generate a 7‑day spend prediction + uncertainty band (fast enough for hackathon demos):
CREATE OR REPLACE SNOWFLAKE.ML.FORECAST SPEND_FORECAST_DEMO (
INPUT_DATA => SYSTEM$REFERENCE('TABLE', 'FINHACK_DB.ANALYTICS.DAILY_SPEND_DEMO'),
SERIES_COLNAME => 'USER_ID',
TIMESTAMP_COLNAME => 'DAY',
TARGET_COLNAME => 'SPEND',
CONFIG_OBJECT => {
'frequency': '1 day',
'method': 'fast',
'evaluate': false
}
);
SELECT *
FROM TABLE(SPEND_FORECAST_DEMO!FORECAST(FORECASTING_PERIODS => 7));We containerize the backend with Docker and deploy to a Vultr VM with a public health endpoint for judges to verify uptime.
Typical flow:
# build (from repo root)
docker build -t finhack-llm:latest -f apps/llm/Dockerfile .
# run
docker rm -f finhack-llm 2>/dev/null || true
docker run -d --name finhack-llm --restart unless-stopped -p 8080:8080 finhack-llm:latest
# verify
curl -sS http://127.0.0.1:8080/v1/healthFinance Queens is built for the real world:
- Less friction → more consistency. Voice capture makes tracking sustainable.
- Supportive coaching. We replace guilt-based budgeting with small, actionable next steps.
- Shared saving clarity. Transparent goals make group saving less awkward.
- Earlier risk signals. Forecasting + anomaly detection helps users (and teams) act before a problem compounds.
apps/
llm/ # Node/Express API + AI endpoints
company_view/ # Streamlit internal dashboard + assistants
MIT