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