|
103 | 103 | from .control_plane.work_items.backlog_hygiene import ( |
104 | 104 | MAX_BACKLOG_HYGIENE_EVIDENCE_ITEMS as _MAX_BACKLOG_HYGIENE_EVIDENCE_ITEMS_READ_MODEL, |
105 | 105 | ) |
106 | | -from .control_plane.goals.dreaming import ( |
107 | | - compact_dreaming_lane_badge as _compact_dreaming_lane_badge_read_model, |
108 | | - compact_dreaming_proposal as _compact_dreaming_proposal_read_model, |
109 | | - compact_server_planning_contract as _compact_server_planning_contract_read_model, |
110 | | - dreaming_attention_fields as _dreaming_attention_fields_read_model, |
111 | | -) |
112 | 106 | from .control_plane.work_items.delivery_signals import ( |
113 | 107 | classification_contains_any as _classification_contains_any_read_model, |
114 | 108 | delivery_batch_scale_for_run as _delivery_batch_scale_for_run_read_model, |
|
136 | 130 | from .control_plane.runtime.status_classifications import ( |
137 | 131 | BLOCKING_CLASSIFICATIONS, |
138 | 132 | CODEX_READY_CLASSIFICATIONS, |
139 | | - DREAMING_ADVISORY_CLASSIFICATIONS, |
| 133 | + DREAMING_ADVISORY_CLASSIFICATIONS, # noqa: F401 |
140 | 134 | HANDOFF_READY_CLASSIFICATIONS, |
141 | 135 | USER_OR_CONTROLLER_CLASSIFICATIONS, |
142 | 136 | ) |
|
284 | 278 |
|
285 | 279 |
|
286 | 280 | _PUBLIC_COMPAT_REEXPORTS = { |
| 281 | + "DREAMING_ADVISORY_CLASSIFICATIONS": "loopx.control_plane.runtime.status_classifications", |
287 | 282 | "TODO_PROJECTION_DETAIL_POINTER_SCHEMA_VERSION": "loopx.control_plane.work_items.project_asset", |
288 | 283 | "TODO_PROJECTION_VIEW_SCHEMA_VERSION": "loopx.control_plane.work_items.project_asset", |
289 | 284 | "project_asset_summary_is_public_safe": "loopx.control_plane.work_items.project_asset", |
@@ -2664,38 +2659,36 @@ def operator_gate_attention_fields(run: dict[str, Any] | None) -> dict[str, Any] |
2664 | 2659 |
|
2665 | 2660 |
|
2666 | 2661 | def compact_server_planning_contract(value: Any) -> dict[str, Any]: |
2667 | | - return _compact_server_planning_contract_read_model( |
2668 | | - value, |
2669 | | - public_safe_compact_text=public_safe_compact_text, |
2670 | | - public_safe_compact_list=public_safe_compact_list, |
| 2662 | + from .control_plane.status.dreaming_projection import ( |
| 2663 | + compact_server_planning_contract as _compact_server_planning_contract, |
2671 | 2664 | ) |
2672 | 2665 |
|
| 2666 | + return _compact_server_planning_contract(value) |
| 2667 | + |
2673 | 2668 |
|
2674 | 2669 | def compact_dreaming_proposal(run: dict[str, Any] | None) -> dict[str, Any] | None: |
2675 | | - return _compact_dreaming_proposal_read_model( |
2676 | | - run, |
2677 | | - dreaming_advisory_classifications=DREAMING_ADVISORY_CLASSIFICATIONS, |
2678 | | - public_safe_compact_text=public_safe_compact_text, |
2679 | | - public_safe_compact_list=public_safe_compact_list, |
| 2670 | + from .control_plane.status.dreaming_projection import ( |
| 2671 | + compact_dreaming_proposal as _compact_dreaming_proposal, |
2680 | 2672 | ) |
2681 | 2673 |
|
| 2674 | + return _compact_dreaming_proposal(run) |
| 2675 | + |
2682 | 2676 |
|
2683 | 2677 | def compact_dreaming_lane_badge(proposal: dict[str, Any] | None) -> dict[str, Any] | None: |
2684 | | - return _compact_dreaming_lane_badge_read_model( |
2685 | | - proposal, |
2686 | | - public_safe_compact_text=public_safe_compact_text, |
| 2678 | + from .control_plane.status.dreaming_projection import ( |
| 2679 | + compact_dreaming_lane_badge as _compact_dreaming_lane_badge, |
2687 | 2680 | ) |
2688 | 2681 |
|
| 2682 | + return _compact_dreaming_lane_badge(proposal) |
| 2683 | + |
2689 | 2684 |
|
2690 | 2685 | def dreaming_attention_fields(run: dict[str, Any] | None) -> dict[str, Any]: |
2691 | | - return _dreaming_attention_fields_read_model( |
2692 | | - run, |
2693 | | - dreaming_advisory_classifications=DREAMING_ADVISORY_CLASSIFICATIONS, |
2694 | | - public_safe_compact_text=public_safe_compact_text, |
2695 | | - public_safe_compact_list=public_safe_compact_list, |
2696 | | - normalize_operator_question=normalize_operator_question, |
| 2686 | + from .control_plane.status.dreaming_projection import ( |
| 2687 | + dreaming_attention_fields as _dreaming_attention_fields, |
2697 | 2688 | ) |
2698 | 2689 |
|
| 2690 | + return _dreaming_attention_fields(run) |
| 2691 | + |
2699 | 2692 |
|
2700 | 2693 | def legacy_runtime_goal_attention( |
2701 | 2694 | goal: dict[str, Any], |
|
0 commit comments