AEGISIntegrate
WHO
AI Engineer or Platform Architect — connecting AI systems to the Aegis governance layer
WHEN
When onboarding a new AI system, setting up passive logging or active enforcement, or configuring agent governance webhooks
WHY
An AI system not connected to Aegis is ungoverned. Integration is the first step in establishing the audit trail that SR 11-7 and EU AI Act require.
HOW
1. Generate an API key 2. Install the SDK (pip install aegis-ai or npm install @aegis-ai/sdk) 3. Instrument your first governance check 4. Verify events appear in Activity Monitor
SR 11-7EU AI Act Art. 9NIST AI RMF
Total Systems
0
connected
Active Now
0
systems online
Events Total
0
governance checks
Avg Latency
—
last 24h
QUICKSTART
# Install pip install aegis-ai # Initialize from aegis import AegisClient client = AegisClient(api_key="aegis_sk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") # Log a governance decision response = client.governance.check( agent_id="fraud-detection-v2", action="transaction_review", context={ "confidence_score": 0.94, "risk_score": 0.12, "transaction_amount": 4200.00 } ) print(response.decision) # ALLOW print(response.pattern_type) # BASELINE print(response.latency_ms) # 38