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
6 lines
137 B
Python
6 lines
137 B
Python
"""Human-in-the-Loop approval workflows."""
|
|
|
|
from .manager import ApprovalQueue, HITLManager
|
|
|
|
__all__ = ["ApprovalQueue", "HITLManager"]
|