Problem
Two issues for enterprise users managing many agents:
1. No filter/search in list_identities
# Current: fetch ALL then filter client-side
all_agents = id_svc.list_identities()
high_risk = [a for a in all_agents if ...] # Manual filtering
# Needed:
id_svc.list_identities(risk_category="high")
id_svc.list_identities(name_contains="Fraud")
id_svc.list_identities(status="active")
2. No bulk report export
CISO needs to generate reports one agent at a time. Need:
report_svc.generate_org_report(agent_ids=[...])
# Or: report_svc.export_all(format="pdf")
Source
ICP 1 (ML Engineer managing 50+ models) and ICP 2 (CISO proving compliance to auditor)
Problem
Two issues for enterprise users managing many agents:
1. No filter/search in list_identities
2. No bulk report export
CISO needs to generate reports one agent at a time. Need:
Source
ICP 1 (ML Engineer managing 50+ models) and ICP 2 (CISO proving compliance to auditor)