Merge pull request 'feat(learning): FU-2 UI — התלבטות-הפאנל במסך-אישור היו"ר (#133)' (#220) from worktree-halacha-deliberation-ui into main
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 1m46s
G12 Leak-Guard / leak-guard (push) Successful in 9s

This commit was merged in pull request #220.
This commit is contained in:
2026-06-12 06:19:50 +00:00
4 changed files with 147 additions and 6 deletions

View File

@@ -7123,12 +7123,15 @@ async def halachot_list(
order_by_priority: bool = False,
cluster: bool = False,
include_equivalents: bool = False,
include_panel_round: bool = False,
):
"""List halachot. ``exclude_low_quality`` hides flagged items (#84.1),
``order_by_priority`` switches to the active-learning order (#84.3),
``cluster`` annotates near-duplicate groups for one-card review (#84.2), and
``include_equivalents`` attaches cross-precedent parallel-authority links. All
default off so existing callers are unaffected; the review queue opts in."""
``cluster`` annotates near-duplicate groups for one-card review (#84.2),
``include_equivalents`` attaches cross-precedent parallel-authority links, and
``include_panel_round`` attaches the latest 3-judge panel deliberation so the
chair sees why the panel split (#133/FU-2). All default off so existing callers
are unaffected; the review queue opts in."""
cid: UUID | None = None
if case_law_id:
try:
@@ -7144,6 +7147,7 @@ async def halachot_list(
order_by_priority=order_by_priority,
cluster=cluster,
include_equivalents=include_equivalents,
include_panel_round=include_panel_round,
)
return {"items": rows, "count": len(rows)}