← Master Index
Vol. 21 Module 21.1 Lecture

Finance AI

Applied Product Categories

How This Lesson Fits the Module & Volume

Healthcare AI introduced the regulated template: allowlist, HITL, audit, Vol. 20 privacy/compliance, no professional-advice product claim. Finance AI copies that template onto money—statements, fraud ops, policy explainers, KYC checklists—where automated credit, trading, or “you should buy” claims are the danger zone. Vol. 20 fairness and bias matter acutely: unequal error rates in underwriting-adjacent tools harm people.

Educational engineering, not financial, tax, investment, or credit advice. Students learn what to build (explain, draft, flag, route) and what not to claim (guaranteed returns, silent approvals). Legal AI next applies the same discipline to counsel work product.

Learning Objectives

By the end of this lesson, students should be able to:

  • State that this lecture is not financial, tax, investment, or credit advice.
  • Map finance use cases to assist vs automated decision vs advice-claim.
  • Require licensed/qualified HITL before customer-impacting money decisions.
  • Design audit logs that record suggestion vs human decision (Vol. 20 governance evidence).
  • Connect fairness/bias eval to credit-adjacent and fraud-adjacent models.
  • Apply privacy minimization to statements, IDs, and vendor training flags.
Definition

Finance AI (here) means AI features in banking, payments, insurance ops, accounting, or markets tooling. The regulated product pattern is: narrow operational assist + human decision-maker + audit trail + privacy/compliance controls + no product claim of personalized investment advice, credit approval, or guaranteed returns by the model alone. Automated decisioning that significantly affects a person (credit, insurance, fraud lockouts) is a high-impact class: if you even approach it, Vol. 15 HITL, Vol. 20 fairness documentation, and counsel are mandatory—this lecture does not green-light unsupervised decision engines.

Not Financial Advice

No ticker, product, or strategy on this page is a recommendation. “KYC,” “AML,” and consumer-credit themes are teaching labels. Real firms need licensed professionals, compliance officers, and counsel. Do not ship “the AI approved your loan” or “buy this asset” from a curriculum example.

Assist vs Decision vs Advice-Claim

PatternExampleHuman roleProduct claim
ExplainPlain-language statement walkthroughCustomer still decides“Explains your statement” + not advice
DraftAnalyst note on an anomaly for reviewAnalyst edits / files SAR-like process internallyOps assist, not a legal filing by the model
Flag / routeQueue ranking for fraud reviewersReviewer investigates; model does not lock funds alonePrioritization, not determination
ChecklistKYC document completeness hintsOfficer accepts/rejects fileCompleteness assist
Out of scope“You should buy X” / silent credit yesN/A—do not shipAdvice or automated adverse decision

Sibling links: customer support tone + Document AI extraction often sit under this vertical, still with finance ACLs. Workflow automation may route cases but must not silently execute money movement.

HITL, Audit, Fairness, Privacy

HITL gates

  • Licensed / authorized role before customer-visible money actions
  • Edit mode for drafted notices
  • Escalate: sanctions, complaints, hardship
  • Sampled review of “low risk” flags

Audit + governance

  • Model suggestion vs human decision stored separately
  • Model/prompt version IDs (Vol. 20 governance)
  • Purpose tags: ops vs marketing (never mix)
  • Retention vs legal hold (Vol. 20 compliance)

Fairness + privacy

  • Slice error rates on fraud/credit-adjacent scores
  • No proxy features that recreate protected classes casually
  • Minimize account numbers in prompts; tokenize
  • Vendor no-train; delete embeddings on rights requests

Assist + HITL buys

  • Faster ops without pretending the model is a fiduciary
  • Explainability artifacts humans can defend
  • Clearer Vol. 19 eval: draft quality, flag precision/recall—not “alpha”

Oracle advisor costs

  • Hallucinated prices, filings, or “guaranteed” language
  • Biased lockouts or denials at scale
  • Regulatory and customer-trust failure

Ops Assist Sketch (Not a Trading / Credit Engine)

Educational gates only. Not investment advice. Not an underwriting model. Not instructions to evade KYC/AML.

# Explain / draft / flag — never "buy/sell/you are approved" as the product claim. # Educational engineering. Not financial, tax, or investment advice. ALLOWED = { "explain_statement", "draft_anomaly_note", "summarize_policy_excerpt", "kyc_checklist_hints", } ADVICE_MARKERS = ( "buy now", "sell now", "guaranteed return", "you should invest", "you are approved", "you are denied", ) AUTHORIZED_ROLES = {"analyst", "compliance", "licensed_rep", "fraud_reviewer"} def gate_finance_output(task: str, draft: str, reviewer_role: str) -> dict: if task not in ALLOWED: return {"status": "blocked", "reason": "out_of_policy_task"} low = draft.lower() if any(m in low for m in ADVICE_MARKERS): return {"status": "rewrite", "reason": "sounds_like_advice_or_credit_decision"} if reviewer_role not in AUTHORIZED_ROLES: return {"status": "pending_hitl", "reason": "unauthorized_actor"} return { "status": "ok_to_present_after_human", "disclaimer": ( "Operational draft. Not investment, tax, or credit advice. " "A qualified human must decide." ), } def log_decision(user_id: str, case_id: str, suggestion: str, human_decision: str): return { "case_id": case_id, "user_id": user_id, "suggestion_len": len(suggestion), "human_decision": human_decision, # approve | edit | reject | escalate "purpose": "ops_assist_not_automated_decision", "fairness_eval_slice_id": None, # fill in Vol. 20 fairness dashboards } # Eval: flag precision/recall (Vol. 19) on reviewer outcomes; hallucination tests # on policy citations; never report "model ROI" as a customer promise.

Related Lectures

LectureRole
Healthcare AIPrevious: same regulated template
Legal AINext: counsel work product
Workflow automation / Document AIRouting + extraction siblings
HITLHuman money decisions
Fairness / BiasUnequal error in high-impact scores
Privacy / Compliance / GovernanceData + evidence packs
Precision / RecallFlag-quality metrics
Common Misconception

“If we call it a copilot, automated credit denials are fine.” Naming does not remove impact. Second: a hallucination about a fee schedule is harmless—customers act on it. Third: fraud scores need no fairness slices because “it is just risk.” Fourth: dumping full PANs into prompts is required for quality. Fifth: this lecture is a trading strategy or tax opinion. Sixth: workflow automation should wire the model directly to send money.

Knowledge Check

  1. Short Answer: Is this lecture financial or investment advice? Answer: No—educational engineering only.
  2. True/False: The model may be the sole product claim for “you are approved.” Answer: False—that automated decision claim is out of scope here.
  3. Multiple Choice: Flag-and-route fraud tools should: (a) prioritize a human queue, (b) silently lock all accounts, (c) guarantee returns. Answer: (a).
  4. Short Answer: Why log suggestion and human decision separately? Answer: Audit/governance evidence and to avoid treating the model as the decision-maker.
  5. True/False: Fairness eval is irrelevant to fraud or credit-adjacent scores. Answer: False—unequal error rates harm people (Vol. 20).
  6. Multiple Choice: Full primary account numbers in prompts are: (a) a minimization failure, (b) required by BLEU, (c) a substitute for HITL. Answer: (a).
  7. Short Answer: Name one in-scope finance AI pattern besides explain. Answer: Draft, flag/route, or checklist (any).
  8. True/False: A disclaimer alone makes “buy this ticker now” an acceptable product feature. Answer: False.
  9. Multiple Choice: Vol. 19 precision/recall in this vertical often score: (a) analyst flag quality, (b) GPU temperature, (c) copyright duration. Answer: (a).
  10. Short Answer: Which previous Vol. 21 lecture defined the same HITL + audit + no-advice-claim template? Answer: Healthcare AI.

Key Takeaways

  • Finance AI here = explain/draft/flag with qualified HITL—not a fiduciary or silent credit engine.
  • Audit suggestion vs human decision; apply Vol. 20 fairness and privacy.
  • Hallucinated fees or “guaranteed” language are product incidents.
  • This page is not financial advice; escalate licensing and regulatory questions.
  • Next: Legal AI — privilege, citation, not the practice of law.
Trainer’s Guide

Lab: Students design a statement-explainer + anomaly-note drafter with role gates, disclaimers, and a fairness slice plan on synthetic flags. No real customer data. No trading recommendations to the class.

Whiteboard: Assist vs automated adverse action vs advice-claim. Circle “send money” as a forbidden unsupervised tool. Preview legal: privilege is the analog of PHI/PAN minimization.

Recap: Finance AI products assist qualified humans under audit—they do not give investment advice or silently decide credit. Continue to Legal AI.