Core Concepts
Reasoning
Memory & Retrieval
Agent Types
Design Patterns
Training & Alignment
Frameworks
Tools
Safety & Security
Evaluation
Meta
Core Concepts
Reasoning
Memory & Retrieval
Agent Types
Design Patterns
Training & Alignment
Frameworks
Tools
Safety & Security
Evaluation
Meta
AI agents are reshaping financial services through autonomous trading support, compliance automation, fraud detection, and portfolio management. By 2026, 44% of finance teams are expected to use agentic AI, representing a 600% increase from prior years. Major institutions including Goldman Sachs, JPMorgan Chase, and Bank of America have moved from experimentation to production deployments, with 50 of the world's largest banks announcing over 160 AI use cases in 2025 alone.
In February 2026, Goldman Sachs CIO Marco Argenti disclosed a landmark deployment of Anthropic's Claude AI agents for back-office operations. The partnership involved Anthropic engineers embedded at Goldman Sachs for six months, co-developing autonomous agents for two specific functions:
Argenti described the agents as “digital co-workers” for scaled, complex, process-intensive functions. Goldman pairs Claude agents with deterministic rules systems and human oversight to handle exception-heavy workflows, ensuring regulatory accountability.
AI agents in trading operate as continuous market monitors, analyzing price movements, news feeds, and macroeconomic signals to generate actionable intelligence. While fully autonomous trading remains limited by regulatory constraints, agents increasingly support:
# Example: portfolio monitoring agent pattern class PortfolioMonitorAgent: def __init__(self, portfolio, risk_engine, alert_service): self.portfolio = portfolio self.risk = risk_engine self.alerts = alert_service def monitor_cycle(self): positions = self.portfolio.get_current_positions() for position in positions: exposure = self.risk.calculate_exposure(position) if self.risk.exceeds_mandate(exposure): deviation = self.risk.analyze_deviation(position, exposure) self.alerts.send( severity=deviation.severity, message=f"Mandate breach: {position.ticker} " f"exposure {exposure.value:.2%} " f"exceeds limit {exposure.limit:.2%}", recommended_action=deviation.suggested_rebalance )
Compliance agents embed regulatory logic directly into operational workflows. During loan processing, compliance agents work in parallel with origination agents to ensure KYC and AML (Anti-Money Laundering) standards are met before workflows advance. Deloitte identifies enhanced KYC and next-generation transaction monitoring as key areas for agentic AI across the financial value chain.
Enterprise compliance agents provide:
Real-time fraud detection has shifted from static rule-based screening to coordinated multi-agent intelligence. When a suspicious transaction appears, AI agents analyze it against historical customer behavior, device fingerprinting, geolocation signals, and known fraud patterns simultaneously.
SAS Viya demonstrated an AI agent autonomously denying highly likely fraudulent mortgage transactions while providing transparent decision lineage for regulatory review. Results across deployments include fewer false positives, faster detection and containment, reduced analyst workload, and lower fraud losses.
AI agents transform portfolio management from reactive reporting to continuous intelligence. Agents monitor portfolios in real time, tracking exposure levels, mandate constraints, and risk thresholds. When deviations occur, agents flag them with explanations of what changed and its significance.
McKinsey research shows early agentic AI implementations have reduced manual workloads by 30-50%, with specific examples including:
| Institution | AI Agent Application | Impact |
|---|---|---|
| Goldman Sachs | Trade accounting, client onboarding | Anthropic Claude, 6-month embedded development |
| JPMorgan Chase | LLM suite for information analysis | Firm-wide employee access |
| Bank of America | Internal Erica for tech and HR | Employee-facing AI assistant |
| SAS (Viya) | Fraud detection and prevention | Autonomous transaction denial with audit trail |
| Citi | Developer AI assistance | Code generation and analysis |