Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions python/routes/transcripts.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -35,7 +35,8 @@

router = APIRouter(prefix="/api/v1/transcripts", tags=["transcripts"])

UI_META = {"label": "Transcripts", "module": "transcripts", "order": 25, "path": "/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"}


def _caller_uid(request: Request) -> Optional[str]:
Expand Down Expand Up @@ -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
Loading