May 25, 2026

9 min read

AI Agents in Financial Services: What Actually Changes When Compliance Is Non-Negotiable

The compliance layer changes everything

Most AI agent content treats financial services as just another industry with a few extra checkboxes. That is wrong. The compliance layer in banking, insurance, and asset management does not just add friction to deployment. It reshapes what you can build, how you can build it, and who owns the outcome when something goes wrong.

This matters if you are a CTO or VP of Engineering at a fintech, a regional bank, or an asset manager trying to move an AI initiative from pilot to production. The pilots are easy. A proof of concept that summarizes earnings calls or drafts loan memos looks impressive in a board deck. Getting that same agent into production, with audit trails, model risk sign-off, and explainability that satisfies your compliance team, is a different project entirely.

Here is what that actually looks like in practice.

Where financial services AI agents are generating real ROI

Before getting into the constraints, it is worth being specific about where AI agents are actually working in production at financial institutions right now, not where they are theoretically applicable.

Credit underwriting and loan processing

Agents that pull structured and unstructured data from multiple sources, run it through configurable scoring logic, and produce a decision package for a human reviewer are live at several mid-market lenders. The agent does not make the final credit decision. It assembles the case. This keeps the human-in-the-loop requirement satisfied while cutting analyst time per application by 60 to 80 percent in documented deployments.

Salesforce has published case study data on this pattern for loan processing automation. Their financial services agent guide is worth reading as a baseline for what the major platform vendors are selling into this space, even if your actual build will look quite different.

Regulatory reporting and audit documentation

PwC has been deploying agents inside finance and accounting functions that automate variance analysis, reconciliation documentation, and audit workpaper preparation. Their research on AI agents for finance and reporting shows where productivity gains are concentrating: not in judgment-heavy decisions, but in the document-heavy work that sits around those decisions.

This is a useful framing for any engineering leader evaluating where to deploy agents first. Target the prep work, not the decision itself. Get your compliance team comfortable with agent-assisted documentation before you put an agent anywhere near a consequential output.

Fraud detection and transaction monitoring

This is one of the more mature use cases. Agents that monitor transaction streams, surface anomalies, and trigger case creation for human investigators are running in production at scale. The agent is not closing the case. It is doing the triage work that would otherwise require a 24-hour analyst rotation.

Research synthesis and client reporting

Wealth management and asset management firms are using retrieval-augmented agents to synthesize market data, analyst reports, and internal portfolio data into draft client communications and investment committee memos. Anthropic has documented specific integrations with institutional data providers like FactSet and S&P Capital IQ for this pattern. Their finance agents announcement gives a sense of what the underlying model capabilities enable at the data integration layer.

The compliance constraints that most pilots ignore

Every AI agent pilot in financial services eventually collides with the same set of constraints. The teams that hit these late pay a significant cost: redoing architecture decisions that were baked into the original build.

Model risk management under SR 11-7

If you are at a bank regulated by the Federal Reserve or OCC, your AI agents are almost certainly models under SR 11-7, the Federal Reserve's guidance on model risk management. This means they need validation before production deployment, ongoing performance monitoring, and documentation that satisfies your Model Risk Management team.

The practical implication: your agent needs to be explainable, not just accurate. You cannot deploy a system that produces underwriting recommendations and tell your MRM team the model says so. You need to show what inputs drove the output, where the agent's uncertainty is high, and how you will catch drift. Build this from day one. Retrofitting explainability into an agent architecture is expensive and usually incomplete.

Data residency and access controls

Financial institutions often operate under data residency requirements that constrain which cloud regions can process certain data. If your agent is calling an external LLM API with customer PII, you need to verify that provider's data processing agreements, retention policies, and subprocessor list against your own compliance requirements. Most teams discover these constraints after they have already built a working prototype.

This is where the off-the-shelf AI agent platform pitch often falls apart. The platform may not support the data isolation your compliance team requires. You end up either negotiating lengthy enterprise agreements or rearchitecting to process sensitive data on-premise or in a private cloud before it ever reaches the model.

Auditability and human oversight

The SEC and FINRA both have guidance on the use of AI in customer-facing financial advice contexts. Even for internal-facing agents, your operations and compliance teams will want a complete audit trail: what did the agent see, what did it decide, why, and who reviewed it. Most general-purpose agent frameworks do not log at this level out of the box. You have to build the observability layer deliberately.

A related issue is decision persistence. If an agent is involved in a process that triggers a regulatory examination, you need to reconstruct exactly what happened. Ephemeral agent memory is fine for consumer chatbots. It is not acceptable for anything that touches a regulated transaction.

Reg BI and automated recommendations

Agents that surface investment recommendations, even as research summaries, can trigger suitability and best-interest obligations under Regulation Best Interest. This is not a fringe scenario. An agent that drafts a suggested portfolio rebalancing memo for an advisor is potentially producing a recommendation under Reg BI, depending on how it is framed and used. Get your legal team involved before you scope the agent, not after the demo.

Build vs. buy in regulated financial environments

The build vs. buy question in financial services AI has a different calculus than it does in other industries. Off-the-shelf agent platforms are optimized for speed of deployment. They are not optimized for auditability, data isolation, or the specific integration patterns that matter at a bank or asset manager.

That said, full custom builds are not always the right answer either. The decision usually comes down to three factors.

First, how sensitive is the data the agent will touch? If the agent operates on customer PII, account data, or non-public market information, you have strong reasons to build a system where you control every layer of the data path. A managed platform's security posture may be excellent, but you still need your legal team to sign off on every third-party subprocessor. That process takes time and creates ongoing vendor management overhead.

Second, how specific is the workflow? Generic document summarization is a commodity. An agent that integrates with your core banking system, your proprietary risk models, and your internal knowledge base is not something a horizontal platform will configure for you out of the box. You will spend as much time integrating and customizing the platform as you would building a bespoke system, often more, because you are now working against the platform's abstractions.

Third, who owns model risk sign-off? If the agent is a model under SR 11-7, someone on your team needs to document its design, validation process, and performance monitoring plan. Platform vendors are not going to write that documentation for you.

What good agent architecture looks like here

A few principles that hold across the financial services deployments that have made it to production.

Keep the agent's scope narrow and its authority limited. An agent that handles one well-defined workflow is easier to validate, monitor, and explain than one with broad capabilities. The instinct to build a do-everything financial agent is understandable but almost always produces a system that is hard to get through compliance review.

Design the human-in-the-loop checkpoints before you design the agent. Know exactly where a human needs to review and approve before you write any code. This shapes your data model, your logging requirements, and your UI needs in ways that are far cheaper to get right at the start.

Instrument everything. Every tool call, every retrieval, every generation, every decision branch. Not just for compliance, but because financial agent failures are hard to debug without complete traces. Your monitoring infrastructure should be designed alongside the agent, not bolted on after the fact.

Use private or enterprise-tier model deployments for anything touching sensitive data. Most major providers now offer enterprise agreements with no training on customer data, defined data retention windows, and region-specific processing. This is table stakes for most financial services deployments.

Run a red team exercise before production. Have someone try to get the agent to produce outputs it should not, surface data it should not access, or take actions outside its defined scope. Agents fail in non-obvious ways, and financial services is not a forgiving environment for non-obvious failures.

The governance question most engineering teams hand off too late

The hardest part of deploying AI agents in financial services is not the engineering. The engineering is solvable. The hard part is getting alignment between engineering, compliance, legal, operations, and model risk management before you start building.

Every team that does this well has a clear owner for the AI governance process who sits outside the engineering team and has the authority to approve or block production deployment. If that person is not identified before the project starts, the project will hit a compliance wall at the end of build, when changing the architecture is expensive.

The governance conversation covers: what is the agent authorized to do autonomously versus recommend for human review? What are the escalation paths when the agent encounters an edge case? How does the agent's scope change over time, and who approves scope expansion? How do you deprecate the agent if performance degrades?

These are not purely engineering questions. They are operational and compliance questions that need engineering input. The earlier that conversation happens, the less rework you do later.

What this means for your timeline

Teams coming from outside financial services consistently underestimate how much the compliance layer extends timelines. A POC that took six weeks can take six months to reach production when you add model risk validation, legal review of vendor agreements, data residency remediation, and the governance alignment work described above.

That is not a reason to avoid building. It is a reason to start the compliance and governance track at the same time as the engineering track, not after the demo impresses a stakeholder.

IBM's published research on AI agents in finance frames this well: the technology is ready, but the operational scaffolding around it is what determines whether a financial institution can deploy it at scale. The firms moving fastest are the ones that invested in that scaffolding early, before they knew exactly what they were building.

If you are working through these decisions and want to compare notes with a team that has shipped production AI systems in regulated environments, get in touch with Genta.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

May 25, 2026

9 min read

AI Agents in Financial Services: What Actually Changes When Compliance Is Non-Negotiable

The compliance layer changes everything

Most AI agent content treats financial services as just another industry with a few extra checkboxes. That is wrong. The compliance layer in banking, insurance, and asset management does not just add friction to deployment. It reshapes what you can build, how you can build it, and who owns the outcome when something goes wrong.

This matters if you are a CTO or VP of Engineering at a fintech, a regional bank, or an asset manager trying to move an AI initiative from pilot to production. The pilots are easy. A proof of concept that summarizes earnings calls or drafts loan memos looks impressive in a board deck. Getting that same agent into production, with audit trails, model risk sign-off, and explainability that satisfies your compliance team, is a different project entirely.

Here is what that actually looks like in practice.

Where financial services AI agents are generating real ROI

Before getting into the constraints, it is worth being specific about where AI agents are actually working in production at financial institutions right now, not where they are theoretically applicable.

Credit underwriting and loan processing

Agents that pull structured and unstructured data from multiple sources, run it through configurable scoring logic, and produce a decision package for a human reviewer are live at several mid-market lenders. The agent does not make the final credit decision. It assembles the case. This keeps the human-in-the-loop requirement satisfied while cutting analyst time per application by 60 to 80 percent in documented deployments.

Salesforce has published case study data on this pattern for loan processing automation. Their financial services agent guide is worth reading as a baseline for what the major platform vendors are selling into this space, even if your actual build will look quite different.

Regulatory reporting and audit documentation

PwC has been deploying agents inside finance and accounting functions that automate variance analysis, reconciliation documentation, and audit workpaper preparation. Their research on AI agents for finance and reporting shows where productivity gains are concentrating: not in judgment-heavy decisions, but in the document-heavy work that sits around those decisions.

This is a useful framing for any engineering leader evaluating where to deploy agents first. Target the prep work, not the decision itself. Get your compliance team comfortable with agent-assisted documentation before you put an agent anywhere near a consequential output.

Fraud detection and transaction monitoring

This is one of the more mature use cases. Agents that monitor transaction streams, surface anomalies, and trigger case creation for human investigators are running in production at scale. The agent is not closing the case. It is doing the triage work that would otherwise require a 24-hour analyst rotation.

Research synthesis and client reporting

Wealth management and asset management firms are using retrieval-augmented agents to synthesize market data, analyst reports, and internal portfolio data into draft client communications and investment committee memos. Anthropic has documented specific integrations with institutional data providers like FactSet and S&P Capital IQ for this pattern. Their finance agents announcement gives a sense of what the underlying model capabilities enable at the data integration layer.

The compliance constraints that most pilots ignore

Every AI agent pilot in financial services eventually collides with the same set of constraints. The teams that hit these late pay a significant cost: redoing architecture decisions that were baked into the original build.

Model risk management under SR 11-7

If you are at a bank regulated by the Federal Reserve or OCC, your AI agents are almost certainly models under SR 11-7, the Federal Reserve's guidance on model risk management. This means they need validation before production deployment, ongoing performance monitoring, and documentation that satisfies your Model Risk Management team.

The practical implication: your agent needs to be explainable, not just accurate. You cannot deploy a system that produces underwriting recommendations and tell your MRM team the model says so. You need to show what inputs drove the output, where the agent's uncertainty is high, and how you will catch drift. Build this from day one. Retrofitting explainability into an agent architecture is expensive and usually incomplete.

Data residency and access controls

Financial institutions often operate under data residency requirements that constrain which cloud regions can process certain data. If your agent is calling an external LLM API with customer PII, you need to verify that provider's data processing agreements, retention policies, and subprocessor list against your own compliance requirements. Most teams discover these constraints after they have already built a working prototype.

This is where the off-the-shelf AI agent platform pitch often falls apart. The platform may not support the data isolation your compliance team requires. You end up either negotiating lengthy enterprise agreements or rearchitecting to process sensitive data on-premise or in a private cloud before it ever reaches the model.

Auditability and human oversight

The SEC and FINRA both have guidance on the use of AI in customer-facing financial advice contexts. Even for internal-facing agents, your operations and compliance teams will want a complete audit trail: what did the agent see, what did it decide, why, and who reviewed it. Most general-purpose agent frameworks do not log at this level out of the box. You have to build the observability layer deliberately.

A related issue is decision persistence. If an agent is involved in a process that triggers a regulatory examination, you need to reconstruct exactly what happened. Ephemeral agent memory is fine for consumer chatbots. It is not acceptable for anything that touches a regulated transaction.

Reg BI and automated recommendations

Agents that surface investment recommendations, even as research summaries, can trigger suitability and best-interest obligations under Regulation Best Interest. This is not a fringe scenario. An agent that drafts a suggested portfolio rebalancing memo for an advisor is potentially producing a recommendation under Reg BI, depending on how it is framed and used. Get your legal team involved before you scope the agent, not after the demo.

Build vs. buy in regulated financial environments

The build vs. buy question in financial services AI has a different calculus than it does in other industries. Off-the-shelf agent platforms are optimized for speed of deployment. They are not optimized for auditability, data isolation, or the specific integration patterns that matter at a bank or asset manager.

That said, full custom builds are not always the right answer either. The decision usually comes down to three factors.

First, how sensitive is the data the agent will touch? If the agent operates on customer PII, account data, or non-public market information, you have strong reasons to build a system where you control every layer of the data path. A managed platform's security posture may be excellent, but you still need your legal team to sign off on every third-party subprocessor. That process takes time and creates ongoing vendor management overhead.

Second, how specific is the workflow? Generic document summarization is a commodity. An agent that integrates with your core banking system, your proprietary risk models, and your internal knowledge base is not something a horizontal platform will configure for you out of the box. You will spend as much time integrating and customizing the platform as you would building a bespoke system, often more, because you are now working against the platform's abstractions.

Third, who owns model risk sign-off? If the agent is a model under SR 11-7, someone on your team needs to document its design, validation process, and performance monitoring plan. Platform vendors are not going to write that documentation for you.

What good agent architecture looks like here

A few principles that hold across the financial services deployments that have made it to production.

Keep the agent's scope narrow and its authority limited. An agent that handles one well-defined workflow is easier to validate, monitor, and explain than one with broad capabilities. The instinct to build a do-everything financial agent is understandable but almost always produces a system that is hard to get through compliance review.

Design the human-in-the-loop checkpoints before you design the agent. Know exactly where a human needs to review and approve before you write any code. This shapes your data model, your logging requirements, and your UI needs in ways that are far cheaper to get right at the start.

Instrument everything. Every tool call, every retrieval, every generation, every decision branch. Not just for compliance, but because financial agent failures are hard to debug without complete traces. Your monitoring infrastructure should be designed alongside the agent, not bolted on after the fact.

Use private or enterprise-tier model deployments for anything touching sensitive data. Most major providers now offer enterprise agreements with no training on customer data, defined data retention windows, and region-specific processing. This is table stakes for most financial services deployments.

Run a red team exercise before production. Have someone try to get the agent to produce outputs it should not, surface data it should not access, or take actions outside its defined scope. Agents fail in non-obvious ways, and financial services is not a forgiving environment for non-obvious failures.

The governance question most engineering teams hand off too late

The hardest part of deploying AI agents in financial services is not the engineering. The engineering is solvable. The hard part is getting alignment between engineering, compliance, legal, operations, and model risk management before you start building.

Every team that does this well has a clear owner for the AI governance process who sits outside the engineering team and has the authority to approve or block production deployment. If that person is not identified before the project starts, the project will hit a compliance wall at the end of build, when changing the architecture is expensive.

The governance conversation covers: what is the agent authorized to do autonomously versus recommend for human review? What are the escalation paths when the agent encounters an edge case? How does the agent's scope change over time, and who approves scope expansion? How do you deprecate the agent if performance degrades?

These are not purely engineering questions. They are operational and compliance questions that need engineering input. The earlier that conversation happens, the less rework you do later.

What this means for your timeline

Teams coming from outside financial services consistently underestimate how much the compliance layer extends timelines. A POC that took six weeks can take six months to reach production when you add model risk validation, legal review of vendor agreements, data residency remediation, and the governance alignment work described above.

That is not a reason to avoid building. It is a reason to start the compliance and governance track at the same time as the engineering track, not after the demo impresses a stakeholder.

IBM's published research on AI agents in finance frames this well: the technology is ready, but the operational scaffolding around it is what determines whether a financial institution can deploy it at scale. The firms moving fastest are the ones that invested in that scaffolding early, before they knew exactly what they were building.

If you are working through these decisions and want to compare notes with a team that has shipped production AI systems in regulated environments, get in touch with Genta.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

May 25, 2026

9 min read

AI Agents in Financial Services: What Actually Changes When Compliance Is Non-Negotiable

The compliance layer changes everything

Most AI agent content treats financial services as just another industry with a few extra checkboxes. That is wrong. The compliance layer in banking, insurance, and asset management does not just add friction to deployment. It reshapes what you can build, how you can build it, and who owns the outcome when something goes wrong.

This matters if you are a CTO or VP of Engineering at a fintech, a regional bank, or an asset manager trying to move an AI initiative from pilot to production. The pilots are easy. A proof of concept that summarizes earnings calls or drafts loan memos looks impressive in a board deck. Getting that same agent into production, with audit trails, model risk sign-off, and explainability that satisfies your compliance team, is a different project entirely.

Here is what that actually looks like in practice.

Where financial services AI agents are generating real ROI

Before getting into the constraints, it is worth being specific about where AI agents are actually working in production at financial institutions right now, not where they are theoretically applicable.

Credit underwriting and loan processing

Agents that pull structured and unstructured data from multiple sources, run it through configurable scoring logic, and produce a decision package for a human reviewer are live at several mid-market lenders. The agent does not make the final credit decision. It assembles the case. This keeps the human-in-the-loop requirement satisfied while cutting analyst time per application by 60 to 80 percent in documented deployments.

Salesforce has published case study data on this pattern for loan processing automation. Their financial services agent guide is worth reading as a baseline for what the major platform vendors are selling into this space, even if your actual build will look quite different.

Regulatory reporting and audit documentation

PwC has been deploying agents inside finance and accounting functions that automate variance analysis, reconciliation documentation, and audit workpaper preparation. Their research on AI agents for finance and reporting shows where productivity gains are concentrating: not in judgment-heavy decisions, but in the document-heavy work that sits around those decisions.

This is a useful framing for any engineering leader evaluating where to deploy agents first. Target the prep work, not the decision itself. Get your compliance team comfortable with agent-assisted documentation before you put an agent anywhere near a consequential output.

Fraud detection and transaction monitoring

This is one of the more mature use cases. Agents that monitor transaction streams, surface anomalies, and trigger case creation for human investigators are running in production at scale. The agent is not closing the case. It is doing the triage work that would otherwise require a 24-hour analyst rotation.

Research synthesis and client reporting

Wealth management and asset management firms are using retrieval-augmented agents to synthesize market data, analyst reports, and internal portfolio data into draft client communications and investment committee memos. Anthropic has documented specific integrations with institutional data providers like FactSet and S&P Capital IQ for this pattern. Their finance agents announcement gives a sense of what the underlying model capabilities enable at the data integration layer.

The compliance constraints that most pilots ignore

Every AI agent pilot in financial services eventually collides with the same set of constraints. The teams that hit these late pay a significant cost: redoing architecture decisions that were baked into the original build.

Model risk management under SR 11-7

If you are at a bank regulated by the Federal Reserve or OCC, your AI agents are almost certainly models under SR 11-7, the Federal Reserve's guidance on model risk management. This means they need validation before production deployment, ongoing performance monitoring, and documentation that satisfies your Model Risk Management team.

The practical implication: your agent needs to be explainable, not just accurate. You cannot deploy a system that produces underwriting recommendations and tell your MRM team the model says so. You need to show what inputs drove the output, where the agent's uncertainty is high, and how you will catch drift. Build this from day one. Retrofitting explainability into an agent architecture is expensive and usually incomplete.

Data residency and access controls

Financial institutions often operate under data residency requirements that constrain which cloud regions can process certain data. If your agent is calling an external LLM API with customer PII, you need to verify that provider's data processing agreements, retention policies, and subprocessor list against your own compliance requirements. Most teams discover these constraints after they have already built a working prototype.

This is where the off-the-shelf AI agent platform pitch often falls apart. The platform may not support the data isolation your compliance team requires. You end up either negotiating lengthy enterprise agreements or rearchitecting to process sensitive data on-premise or in a private cloud before it ever reaches the model.

Auditability and human oversight

The SEC and FINRA both have guidance on the use of AI in customer-facing financial advice contexts. Even for internal-facing agents, your operations and compliance teams will want a complete audit trail: what did the agent see, what did it decide, why, and who reviewed it. Most general-purpose agent frameworks do not log at this level out of the box. You have to build the observability layer deliberately.

A related issue is decision persistence. If an agent is involved in a process that triggers a regulatory examination, you need to reconstruct exactly what happened. Ephemeral agent memory is fine for consumer chatbots. It is not acceptable for anything that touches a regulated transaction.

Reg BI and automated recommendations

Agents that surface investment recommendations, even as research summaries, can trigger suitability and best-interest obligations under Regulation Best Interest. This is not a fringe scenario. An agent that drafts a suggested portfolio rebalancing memo for an advisor is potentially producing a recommendation under Reg BI, depending on how it is framed and used. Get your legal team involved before you scope the agent, not after the demo.

Build vs. buy in regulated financial environments

The build vs. buy question in financial services AI has a different calculus than it does in other industries. Off-the-shelf agent platforms are optimized for speed of deployment. They are not optimized for auditability, data isolation, or the specific integration patterns that matter at a bank or asset manager.

That said, full custom builds are not always the right answer either. The decision usually comes down to three factors.

First, how sensitive is the data the agent will touch? If the agent operates on customer PII, account data, or non-public market information, you have strong reasons to build a system where you control every layer of the data path. A managed platform's security posture may be excellent, but you still need your legal team to sign off on every third-party subprocessor. That process takes time and creates ongoing vendor management overhead.

Second, how specific is the workflow? Generic document summarization is a commodity. An agent that integrates with your core banking system, your proprietary risk models, and your internal knowledge base is not something a horizontal platform will configure for you out of the box. You will spend as much time integrating and customizing the platform as you would building a bespoke system, often more, because you are now working against the platform's abstractions.

Third, who owns model risk sign-off? If the agent is a model under SR 11-7, someone on your team needs to document its design, validation process, and performance monitoring plan. Platform vendors are not going to write that documentation for you.

What good agent architecture looks like here

A few principles that hold across the financial services deployments that have made it to production.

Keep the agent's scope narrow and its authority limited. An agent that handles one well-defined workflow is easier to validate, monitor, and explain than one with broad capabilities. The instinct to build a do-everything financial agent is understandable but almost always produces a system that is hard to get through compliance review.

Design the human-in-the-loop checkpoints before you design the agent. Know exactly where a human needs to review and approve before you write any code. This shapes your data model, your logging requirements, and your UI needs in ways that are far cheaper to get right at the start.

Instrument everything. Every tool call, every retrieval, every generation, every decision branch. Not just for compliance, but because financial agent failures are hard to debug without complete traces. Your monitoring infrastructure should be designed alongside the agent, not bolted on after the fact.

Use private or enterprise-tier model deployments for anything touching sensitive data. Most major providers now offer enterprise agreements with no training on customer data, defined data retention windows, and region-specific processing. This is table stakes for most financial services deployments.

Run a red team exercise before production. Have someone try to get the agent to produce outputs it should not, surface data it should not access, or take actions outside its defined scope. Agents fail in non-obvious ways, and financial services is not a forgiving environment for non-obvious failures.

The governance question most engineering teams hand off too late

The hardest part of deploying AI agents in financial services is not the engineering. The engineering is solvable. The hard part is getting alignment between engineering, compliance, legal, operations, and model risk management before you start building.

Every team that does this well has a clear owner for the AI governance process who sits outside the engineering team and has the authority to approve or block production deployment. If that person is not identified before the project starts, the project will hit a compliance wall at the end of build, when changing the architecture is expensive.

The governance conversation covers: what is the agent authorized to do autonomously versus recommend for human review? What are the escalation paths when the agent encounters an edge case? How does the agent's scope change over time, and who approves scope expansion? How do you deprecate the agent if performance degrades?

These are not purely engineering questions. They are operational and compliance questions that need engineering input. The earlier that conversation happens, the less rework you do later.

What this means for your timeline

Teams coming from outside financial services consistently underestimate how much the compliance layer extends timelines. A POC that took six weeks can take six months to reach production when you add model risk validation, legal review of vendor agreements, data residency remediation, and the governance alignment work described above.

That is not a reason to avoid building. It is a reason to start the compliance and governance track at the same time as the engineering track, not after the demo impresses a stakeholder.

IBM's published research on AI agents in finance frames this well: the technology is ready, but the operational scaffolding around it is what determines whether a financial institution can deploy it at scale. The firms moving fastest are the ones that invested in that scaffolding early, before they knew exactly what they were building.

If you are working through these decisions and want to compare notes with a team that has shipped production AI systems in regulated environments, get in touch with Genta.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.

We’re Here to Help

Ready to transform your operations? We're here to help. Contact us today to learn more about our innovative solutions and expert services.