Show full Grid-Review in Ground Truth step + GT badge in session list
Some checks failed
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-school (push) Successful in 34s
CI / test-go-edu-search (push) Successful in 37s
CI / test-python-klausur (push) Failing after 2m18s
CI / test-python-agent-core (push) Successful in 22s
CI / test-nodejs-website (push) Successful in 27s

- StepGroundTruth now shows the split view (original image + table)
  so the user can verify the final result before marking as GT
- Backend session list now returns is_ground_truth flag
- SessionList shows amber "GT" badge for marked sessions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-10 19:34:32 +02:00
parent aabd849e35
commit e6f8e12f44
4 changed files with 265 additions and 30 deletions

View File

@@ -262,14 +262,22 @@ async def list_sessions_db(
document_category, doc_type,
parent_session_id, box_index,
document_group_id, page_number,
created_at, updated_at
created_at, updated_at,
ground_truth
FROM ocr_pipeline_sessions
{where}
ORDER BY created_at DESC
LIMIT $1
""", limit)
return [_row_to_dict(row) for row in rows]
results = []
for row in rows:
d = _row_to_dict(row)
# Derive is_ground_truth flag from JSONB, then drop the heavy field
gt = d.pop("ground_truth", None) or {}
d["is_ground_truth"] = bool(gt.get("build_grid_reference"))
results.append(d)
return results
async def get_sub_sessions(parent_session_id: str) -> List[Dict[str, Any]]: