Spaces:
Running
Running
File size: 518 Bytes
2129c29 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | """Firewall package exports for NLProxy.
This package contains the prompt firewall API and default semantic
firewall configuration that is shared by the server and request pipeline.
Author: IntelliDeep Labs Team
License: BSL 1.1
"""
from .firewall import (
PromptFirewall,
FirewallAction,
FirewallRule,
DEFAULT_FIREWALL_RULES,
SEMANTIC_FIREWALL_CONFIG
)
__all__ = [
"PromptFirewall",
"FirewallAction",
"FirewallRule",
"DEFAULT_FIREWALL_RULES",
"SEMANTIC_FIREWALL_CONFIG"
]
|