__init__.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Adversarial-freeze honesty gate (§AFF).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from tools.adversarial_freeze.authorize import ( |
| 6 | AffAuthState, |
| 7 | AdversarialAuthorization, |
| 8 | adversarial_authorization_state, |
| 9 | aff_hold_bypassed, |
| 10 | aggregate_adversarial_authorization_states, |
| 11 | author_loop_complete, |
| 12 | frv_authorizing_freeze_paths, |
| 13 | ) |
| 14 | from tools.adversarial_freeze.surface import ( |
| 15 | AdversarialFreezeGateReport, |
| 16 | build_adversarial_freeze_gate, |
| 17 | format_adversarial_freeze_gate_line, |
| 18 | adversarial_freeze_gate_payload, |
| 19 | ) |
| 20 | |
| 21 | __all__ = [ |
| 22 | "AffAuthState", |
| 23 | "AdversarialAuthorization", |
| 24 | "AdversarialFreezeGateReport", |
| 25 | "adversarial_authorization_state", |
| 26 | "adversarial_freeze_gate_payload", |
| 27 | "aff_hold_bypassed", |
| 28 | "aggregate_adversarial_authorization_states", |
| 29 | "author_loop_complete", |
| 30 | "build_adversarial_freeze_gate", |
| 31 | "format_adversarial_freeze_gate_line", |
| 32 | "frv_authorizing_freeze_paths", |
| 33 | ] |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago