NLProxy / nlproxy /firewall /__init__.py
Luiserb's picture
first commit
2129c29
Raw
History Blame Contribute Delete
518 Bytes
"""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"
]