forked from cardosofelipe/pragma-stack
- Add rollback manager with file checkpointing and transaction context - Add HITL manager with approval queues and notification handlers - Add content filter with PII, secrets, and injection detection - Add emergency controls with stop/pause/resume capabilities - Update SafetyConfig with checkpoint_dir setting Issue #63
24 lines
400 B
Python
24 lines
400 B
Python
"""Content filtering for safety."""
|
|
|
|
from .filter import (
|
|
ContentCategory,
|
|
ContentFilter,
|
|
FilterAction,
|
|
FilterMatch,
|
|
FilterPattern,
|
|
FilterResult,
|
|
filter_content,
|
|
scan_for_secrets,
|
|
)
|
|
|
|
__all__ = [
|
|
"ContentCategory",
|
|
"ContentFilter",
|
|
"FilterAction",
|
|
"FilterMatch",
|
|
"FilterPattern",
|
|
"FilterResult",
|
|
"filter_content",
|
|
"scan_for_secrets",
|
|
]
|