Skip to main content
The Agent Governance SDK provides robust monitoring, compliance, and governance tools for AI agents, specifically tailored for banking and financial services applications. Monitor agent interactions, detect compliance violations, and gain critical insights into your AI agent ecosystem.

Key Features

Automated LLM Monitoring

Seamlessly wrap Anthropic and OpenAI clients to automatically track requests, responses, token usage, and costs

Real-time Compliance

Offline rules-based engine to detect PII, fair lending violations, and compliance risks in real-time

Detailed Event Tracking

Track granular events like tool calls, errors, and conversation lifecycles with full context

Agent Registration

Register and manage agent profiles, versions, and compliance settings

Quick Start

Get up and running with the Agent Governance SDK in minutes:
1

Install the SDK

npm install @agent-governance/node
2

Initialize the Monitor

import { AgentMonitor } from '@agent-governance/node';

const monitor = new AgentMonitor({
  apiKey: 'your-governance-api-key',
  organizationId: 'your-org-id',
  environment: 'development'
});
3

Register Your Agent

await monitor.registerAgent({
  id: 'banking-assistant',
  name: 'Banking Assistant',
  category: 'tool_calling',
  version: '1.0.0',
  llmProvider: 'anthropic',
  model: 'claude-3-5-sonnet-20241022'
});
4

Start Tracking

monitor.trackConversationStart('banking-assistant', 'session-123');
monitor.trackUserMessage('banking-assistant', 'session-123', 'Hello!');
monitor.trackAgentResponse('banking-assistant', 'session-123', 'Hi there!');

Use Cases

The Agent Governance SDK is designed for organizations that need to:
  • Ensure Compliance: Monitor AI agents for regulatory compliance in banking and finance
  • Track Performance: Analyze agent interactions, response quality, and operational metrics
  • Manage Risk: Detect and prevent potential compliance violations before they impact customers
  • Audit Conversations: Maintain detailed logs of all agent interactions for regulatory purposes

Banking & Financial Services Focus

Built specifically for the unique compliance requirements of financial institutions:
  • SR 11-7 Compliance: Model validation and documentation requirements
  • Fair Lending Monitoring: Detect discriminatory language and bias
  • BSA/AML Checks: Anti-money laundering and suspicious activity detection
  • PII Protection: Comprehensive personally identifiable information detection

Next Steps

Quick Start Guide

Get up and running in under 5 minutes

Anthropic Integration

Automatically monitor Claude API calls

OpenAI Integration

Track GPT model interactions

API Reference

Complete SDK documentation