29 lines
525 B
Python
29 lines
525 B
Python
"""
|
|
The Shield — Jailbreak & Crisis Input Detection
|
|
Built from the ULTRAPLINIAN red team audit (2026-03-31).
|
|
"""
|
|
|
|
from .jailbreak_detector import (
|
|
detect,
|
|
DetectionResult,
|
|
PatternMatch,
|
|
Verdict,
|
|
SAFE_SIX,
|
|
CRISIS_SYSTEM_PROMPT,
|
|
get_safe_models,
|
|
is_safe_model,
|
|
is_critically_failed,
|
|
)
|
|
|
|
__all__ = [
|
|
"detect",
|
|
"DetectionResult",
|
|
"PatternMatch",
|
|
"Verdict",
|
|
"SAFE_SIX",
|
|
"CRISIS_SYSTEM_PROMPT",
|
|
"get_safe_models",
|
|
"is_safe_model",
|
|
"is_critically_failed",
|
|
]
|