The framework that isn't coming

On 17 April 2026 the US banking agencies superseded SR 11-7, the model-risk guidance a generation of bank examiners grew up on. The replacement, SR 26-2 and OCC Bulletin 2026-13, contains a footnote every compliance team using AI should read: "Generative AI and agentic AI models are novel and rapidly evolving. As such, they are not within the scope of this guidance." It continues that a bank's "risk management and governance practices should guide the determination of appropriate governance and controls".

That is not an absence of direction. It is a transfer of responsibility. The agencies have said they plan a request for information on AI in model risk management, but until something replaces the footnote, the controls are whatever a bank can defend to its examiner and its board.

Broker-dealers are in a similar position. FINRA's Notice 24-09 said it created no new obligations. Its 2026 oversight report lists, among practices firms may adopt, keeping prompt and output logs and "tracking which model version was used and when." A 2025 notice asked the industry whether the recordkeeping rules themselves need updating for AI-generated communications. In Europe, the AI Act's logging duties for high-risk systems such as consumer credit scoring now apply from December 2027, after this year's omnibus amendment, and financial institutions keep those logs under their existing financial-services record rules.

So the evidence has to be designed by the firm. I think it comes down to three questions.

Question one: which model produced this?

For a hosted model, the honest answer is better than the folklore. Vendors do not silently swap weights. Anthropic documents that an existing model ID's weights and configuration are not updated, and Azure defines general availability as fixed weights and APIs. But three things still move underneath you.

Models retire. Anthropic gives at least 60 days' notice. Azure retires models 12 to 18 months after launch and, for standard deployments, upgrades to a replacement automatically unless configured otherwise. OpenAI's own August 2025 flagship snapshot is scheduled to shut down in December 2026. Serving infrastructure changes too: routers, safety classifiers and sampling logic are updated around a fixed model, and vendors acknowledge this can shift behaviour slightly.

A record that says "we used the vendor's model" is not an answer. The record needs the exact model identifier, the date, the deployment configuration, and, if you run the model yourself, a hash of the weight files and the runtime version. When the model has retired, the record should still tell an examiner exactly what ran.

Question two: can you reproduce it?

Most people assume that setting temperature to zero makes a model deterministic. It does not. In 2025, researchers at Thinking Machines Lab sent the same prompt 1,000 times at temperature zero to a large open model on a standard inference server and got 80 different completions. The cause was not randomness in sampling. The server batches requests together, the batch size changes with load, and the arithmetic kernels give slightly different results at different batch sizes. The fix, batch-invariant kernels, made all 1,000 identical, at roughly one and a half to two times the cost.

This applies to anyone running a shared inference server, including firms that run their own. Self-hosting does not make outputs reproducible by default. What it gives you is the ability to choose: pin the weights, the runtime and the kernels, keep a retired model available for as long as your retention period requires, and run a batch-invariant mode for the workflows that need it. The claim worth making to an examiner is narrow and testable: under these recorded conditions, this output can be regenerated.

Question three: where did the numbers come from?

The most useful line in SR 26-2 may be its definition of what a model is not. It excludes "simple arithmetic calculations, such as those found within spreadsheets, as well as deterministic rule-based processes and software". The guidance does not endorse any design. But it draws the right line: arithmetic is not a modelling problem, and it should not be done by a model.

A language model should never be the component that computes an interest accrual, a covenant ratio or a capital figure. Those belong in deterministic code whose output is the same every time and can be tested once and trusted. The model's job is to decide which calculation to run, to explain the result, and to draft around it.

That leaves one risk: copying. A model that receives "$1,243,567" from a tool can still write "$1,234,567" in its answer. Close calls like that are exactly where quantization and sampling noise show up. The control is cheap and mechanical. Every figure in the final text is matched against the tool output it came from before anyone sees it. If it does not match, the draft does not ship.

Evidence, not assurances

None of this is required by a rule today, and I would be wary of anyone who says otherwise. It is simply what a careful firm can show when an examiner, an auditor or opposing counsel asks what the AI did. Record the exact model and runtime. Reproduce under stated conditions. Keep arithmetic in code, and check every copied figure.

When the regulators do write the next framework, firms that already keep this evidence will find it describes what they are doing. Firms that do not will be rebuilding their audit trail from vendor changelogs.

Frequently asked questions

Does SR 11-7 still apply to AI at banks?

No. SR 11-7 was superseded on 17 April 2026 by SR 26-2 and OCC Bulletin 2026-13, which expressly place generative and agentic AI outside their scope and direct banks to their own risk management and governance.

Is temperature zero enough to make outputs reproducible?

No. On shared inference servers, results can vary with batch size. Reproducibility requires pinned weights, runtime and kernels, and batch-invariant execution where it matters.

Are AI prompts and outputs broker-dealer records?

No SEC or FINRA text says so yet. FINRA has asked whether recordkeeping rules need updating for AI communications, and lists logging prompts, outputs and model versions as practices firms may adopt.

Sources & further reading

Talk with us about your workflow →