Refine leaderboard layout and styling

This commit is contained in:
Adam 2026-05-28 15:07:14 -05:00
commit ffbf9df18e
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
3 changed files with 147 additions and 61 deletions

View file

@ -151,7 +151,7 @@ function buildLeaderboard(rows: StatMetricRow[], product: UsageProduct, window:
return aggregateByModel(rowsForProduct(rows, product, window.start, window.end))
.toSorted((a, b) => b.totalTokens - a.totalTokens)
.slice(0, 13)
.slice(0, 18)
.map((item, index) => ({
model: item.model,
author: formatProvider(item.provider),