AI agents in banking · The build map · Brief 01

Credit scoring & underwriting: a design brief for banks.

Last updated Sep 17, 2026 · standard answers for this use case · adjust them in the map

Credit is the use case with the clearest rulebook and the least room for autonomy. The scoring model itself is a model in the model-risk sense and stays under validation; what the newer patterns add is everything around it: assembling the file from documents and systems, checking it for completeness, drafting the decision memo and producing the reasons a declined applicant is owed. The design that survives an exam keeps the decision with a person or a validated model, and uses the language model to prepare and explain, never to decide on its own.

WorkflowParallelizationEvaluator and optimizerTier 1: a person decidesautonomy level 1

Credit scoring & underwriting: The model prepares, drafts and checks. A person decides and acts, and the record shows who. Several model calls orchestrated by your code, in a sequence or a graph you designed. High stakes, hard to undo, customer-facing. The model prepares, drafts and checks; a person decides and acts, and the record shows it.

PatternWorkflow. Your code lays out the steps, the cost of error is real, and you need to observe every step.ParallelizationIndependent sub-tasks run at the same time, or several attempts run and are compared, then results are aggregated in code.Evaluator and optimizerOne model produces, another checks against explicit criteria, and the loop repeats until the check passes or a person is called.KnowledgeRetrieval over the governed document set, with a citation on every answer and a refusal when nothing relevant is found. Tool calls to the system of record for anything live. Never retrieval for a balance, a case status or a limit. Documents to reason with, systems to check against: the workflow decides which question goes where before the model answers.Delivery routeThrough a cloud platform: two third parties in the chain and a concentration question; often the faster route through security review.

Which steps belong to a person, the model and a system?

A PERSONTHE MODELA SYSTEM1
Collect and classify documents
2
Verify income, identity and existing exposure
3
Score and price
4
Draft the decision memo
5
Decide
6
Adverse-action notice
#StepOwnerNote
1Collect and classify documentsThe modelExtraction against a schema, with a confidence per field.
2Verify income, identity and existing exposureA systemTool calls to the core, the bureau and the KYC store; never retrieval.
3Score and priceA systemThe validated scoring model, outside the language model entirely.
4Draft the decision memoThe modelFrom the file and the score; every number traceable to its source.
5DecideA personThe underwriter, with the memo; the record shows the reviewer.
6Adverse-action noticeA systemReasons generated from the decision record and checked against the required list.

Which control layers carry the weight?

Governance and accountabilityCOREIdentity and entitlementsCOREAction gatewayCOREData and knowledgeCOREModels and vendorsCORERuntime and orchestrationSTANDARDObservability, evaluation and auditCOREHuman oversight and escalationCORE

Each layer is described, with its controls and documents, on the control plane page.

Which rules and guidance does this design answer to?

DocumentAuthorityWhy it applies hereStatus
ECOA / Regulation B adverse action (15 U.S.C. 1691(d); 12 CFR 1002.9)CFPBSpecific principal reasons for any adverse credit action, whatever the model.In force
FCRA adverse action and credit-score disclosures (15 U.S.C. 1681m, 1681g(f))CFPBKey factors behind a credit score must be disclosed.In force
SR 26-2Federal ReserveA credit model is a model: validation and monitoring scaled to materiality.In force
Regulation (EU) 2024/1689EU AI ActCredit scoring of natural persons is high-risk in the EU (Annex III 5(b)).In force
EBA Guidelines on loan origination and monitoring (EBA/GL/2020/06)EBAEU rulebook for automated creditworthiness models; staff must be able to override.In force
CFPB Chatbots in Consumer Finance (issue spotlight, 2023)CFPBCustomer-facing AI must not block access to a person or give wrong answers about rights.Final
SR 23-4Federal ReserveUS third-party risk management, including the model provider.In force
SB 26-189Colorado AI ActColorado: notice, explanation and human review for consequential automated decisions from Jan 1, 2027.Final
BCBS Third-Party Risk Principles (Dec 2025)Basel CommitteeNth-party supply chains and concentration on cloud providers.In force
BCBS ICT Risk Management Report (June 2026)Basel CommitteeHow supervisors look at ICT and cloud dependencies.Final
OCC Bulletin 2026-13OCCFor a national bank, the OCC's copy of the 2026 model-risk guidance.In force
NIST AI RMF 1.0NISTThe voluntary Govern, Map, Measure, Manage frame for everything model-risk guidance leaves out.In force

How will you know it works, before and after launch?

CODE CHECKS20%JUDGE MODEL45%HUMAN REVIEW35%
  • A golden dataset of at least 300 real cases with expected outputs, including adversarial inputs: wrong documents, unusual formats, prompts that try to change the task.
  • A judge model scoring against a written rubric (accuracy, completeness, tone, citation present), calibrated against a human-scored sample every month. Threshold set from the human sample, not guessed.
  • Citation checks: every factual claim resolves to a passage in the governed set; unsupported claims below 2% of answers.
  • Escalation evals: the cases that must reach a person do, on a held-out set, with precision and recall both reported.
  • Trace evals per step, not only end to end: which step fails, how often, at what cost, so a prompt or model change can be judged step by step.
  • The same suite reruns on every prompt change, model version change and retrieval change; a regression blocks the release. That is what ongoing monitoring and outcomes analysis mean in model-risk terms.

Where must a person be in the loop?

  • A named accountable executive signs off the use case before build, and the inventory records the tier.
  • A person reviews every output before it reaches a customer or a system of record; the review is logged with the reviewer's identity.
  • Independent validation before launch and outcomes analysis after it, on the model-risk schedule for a material model.
  • Adverse outcomes to a customer carry the specific reasons the law requires, produced from the decision record, not reconstructed afterwards.
  • A kill switch and a rollback path, tested before launch.
  • The customer is told they are dealing with an AI system and can reach a person in one step.
  • Adverse-action explainability is tested as a launch gate: if the system cannot produce specific principal reasons, it does not decide.
  • Letting the language model influence the score, which makes the scoring model unvalidatable.
  • Reconstructing adverse-action reasons after the fact instead of from the decision record.
  • Forgetting that a fraud-driven decline is still an adverse action.

What will a validator or an examiner ask?

  1. Where is this system in your inventory, what tier did you assign, and who signed it off?
  2. What counts as a model here, and what does your validation cover for the parts that are not?
  3. Show me the data lineage behind the retrieval set and the training or tuning data.
  4. What can the system do without a person, and where is that written down?
  5. How do you know it is still working: which evals run, how often, and what happened the last time one failed?
  6. What did you do about the vendor: due diligence, contract, exit plan, concentration?
  7. Walk me through one wrong output from production and what the customer, if any, saw.
  8. Who can switch it off, and has that been tested?
  9. Produce the adverse-action reasons for this declined applicant from the decision record.
  10. Show me how a customer reaches a person, and how long it took the last ten who tried.

What it does: assembles and checks a credit application, and explains a decision; the model prepares, drafts and checks. a person decides and acts, and the record shows who.

Pattern: workflow (parallelization, evaluator and optimizer); tier 1: a person decides.

Rules it answers to: 4 documents across US, each linked in the brief.

How we know it works: a golden dataset, automated checks on every release, and human review at the level the tier demands.

What could go wrong and who answers: the accountable owner, the kill switch, the escalation route.

Which of the 100 largest US banks have put this use case on the record?

Every rule this brief cites, the morning it changes.

agent deployments, regulator positions and the day's six stories · in your inbox by 7 am ET · free

plus every tracker, bank and agent page update, the morning after · leave any morning