Implementation of the Microsoft Agent Management Toolkit for Safe AI Agent Implementation with Policies, Authorizations, Audit Logs, and Risk Management.
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”: … Read more