An Implementation of the Microsoft Agent Governance Toolkit for Safe AI Agent Tool Use with Policies, Approvals, Audit Logs, and Risk Controls
scenarios = [ { “name”: “Safe database read”, “tool”: research_db, “kwargs”: { “table”: “customers”, “operation”: “select”, “type”: “select”, “sensitivity”: “medium” } }, { “name”: “Blocked destructive database action”, “tool”: research_db, “kwargs”: { “table”: “customers”, “operation”: “drop”, “type”: “drop_table”, “sensitivity”: “critical” } }, { “name”: “External email requiring approval”, “tool”: research_email, “kwargs”: { “to”: “[email protected]”, “recipient_domain”:…
