File size: 508 Bytes
1049895
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from typing import Optional
from nemoguardrails.actions import action

@action(is_system_action=True)
async def check_blocked_terms(context: Optional[dict] = None):
    bot_response = context.get("bot_message")
    sensitive_information = [
        "Access Keys",
        "Secret Key",
        "IAM Role Information",
        "Encryption Algorithm",
        "Billing Information"
    ]

    for term in sensitive_information:
        if term in bot_response.lower():
            return True

    return False