You want to prevent an AI agent from sending emails and deleting files but allow reading data. Which guardrail setup achieves this?
Aguardrails.allow('send_email') and guardrails.allow('delete_file') and guardrails.block('read_data')
Bguardrails.block('read_data') and guardrails.allow('send_email') and guardrails.allow('delete_file')
Cguardrails.block('send_email') and guardrails.block('delete_file') and guardrails.allow('read_data')
Dguardrails.allow('send_email') and guardrails.block('delete_file') and guardrails.allow('read_data')