Refine leaderboard layout and styling

This commit is contained in:
Adam
2026-05-28 15:07:14 -05:00
parent e3a6255c72
commit ffbf9df18e
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),