From 2cfe07889ea117aa06c0dc4fe527c49d9ec32136 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 09:47:00 +0000 Subject: [PATCH 1/3] Initial plan From 14bafd13105a46f25bb5ff350f403698b80431ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 09:53:54 +0000 Subject: [PATCH 2/3] fix(transcripts): avoid unused UI_META entry for standalone transcripts page Agent-Logs-Url: https://github.com/The-Interdependency/a0/sessions/8660b7a9-42e8-417a-a091-b6b41e29a665 Co-authored-by: erinepshovel-code <250928284+erinepshovel-code@users.noreply.github.com> --- python/routes/transcripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/routes/transcripts.py b/python/routes/transcripts.py index 7d0ed15c..7523ea87 100644 --- a/python/routes/transcripts.py +++ b/python/routes/transcripts.py @@ -35,7 +35,7 @@ router = APIRouter(prefix="/api/v1/transcripts", tags=["transcripts"]) -UI_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/transcripts"} +PAGE_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/transcripts"} def _caller_uid(request: Request) -> Optional[str]: From 1a780f0721223e2fcdc3a57572b95bf4ab40c4c3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 09:55:02 +0000 Subject: [PATCH 3/3] docs(transcripts): clarify PAGE_META is top-nav metadata only Agent-Logs-Url: https://github.com/The-Interdependency/a0/sessions/8660b7a9-42e8-417a-a091-b6b41e29a665 Co-authored-by: erinepshovel-code <250928284+erinepshovel-code@users.noreply.github.com> --- python/routes/transcripts.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/routes/transcripts.py b/python/routes/transcripts.py index 7523ea87..2adccd34 100644 --- a/python/routes/transcripts.py +++ b/python/routes/transcripts.py @@ -1,4 +1,4 @@ -# 231:78 3:6 2:4 +# 231:79 3:6 2:4 # DOC module: transcripts # DOC label: Transcripts # DOC description: Transcript upload and EDCMBONE scoring — ingest files, list uploads/reports, and drill into per-round messages. @@ -35,6 +35,7 @@ router = APIRouter(prefix="/api/v1/transcripts", tags=["transcripts"]) +# Standalone top-nav page metadata (not a console tab; not consumed by collect_ui_meta). PAGE_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/transcripts"} @@ -364,4 +365,4 @@ async def explain_report_endpoint(request: Request, report_id: int): status_code=502, detail=f"explainer failed: {type(exc).__name__}: {exc}", ) -# 231:78 3:6 2:4 +# 231:79 3:6 2:4