curl --request PUT \
--url https://api.mnemom.ai/v1/orgs/{org_id}/agents/{agent_id}/containment-policy \
--header 'Content-Type: application/json' \
--data '
{
"auto_containment_threshold": 3
}
'{
"agent_id": "<string>",
"auto_containment_threshold": 123
}Set or disable the auto-containment threshold. When set, the agent will be automatically paused after N consecutive boundary violations. Requires owner or admin role.
curl --request PUT \
--url https://api.mnemom.ai/v1/orgs/{org_id}/agents/{agent_id}/containment-policy \
--header 'Content-Type: application/json' \
--data '
{
"auto_containment_threshold": 3
}
'{
"agent_id": "<string>",
"auto_containment_threshold": 123
}Number of consecutive boundary violations before auto-pause. Set to null to disable.
x >= 2