- 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
156 B
Python
6 lines
156 B
Python
"""Rollback management for agent actions."""
|
|
|
|
from .manager import RollbackManager, TransactionContext
|
|
|
|
__all__ = ["RollbackManager", "TransactionContext"]
|