From c1a617a0f598ff6881265420a764f6a28d31b185 Mon Sep 17 00:00:00 2001 From: joehart2001 Date: Mon, 13 Jul 2026 12:11:11 +0100 Subject: [PATCH] add number of tests and categories indicator --- ml_peg/app/build_app.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/ml_peg/app/build_app.py b/ml_peg/app/build_app.py index 9d98d0816..e01256240 100644 --- a/ml_peg/app/build_app.py +++ b/ml_peg/app/build_app.py @@ -1305,9 +1305,26 @@ def select_page( ) if pathname in (None, "", "/", "/summary"): + summary_counts = ( + f"{len(category_views)} categories ยท {len(all_apps)} benchmarks" + ) return Div( [ H1("Categories Summary"), + Div( + summary_counts, + style={ + "fontSize": "14px", + "fontWeight": "600", + "color": "#212529", + "backgroundColor": "#f1f3f5", + "border": "1px solid #dee2e6", + "borderRadius": "6px", + "padding": "8px 14px", + "marginBottom": "12px", + "width": "fit-content", + }, + ), Div( "Scores range from 0 (worst) to 1 (best).", style={