From 561ae81e2d4500163f060a376c85610bd5d53634 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Wed, 10 Sep 2025 05:34:50 +0000 Subject: [PATCH] feat: extend evals chart to show runs up to $60 - Updated cost filter threshold from $50 to $60 - Updated exclusion note text to reflect new threshold --- apps/web-roo-code/src/app/evals/plot.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web-roo-code/src/app/evals/plot.tsx b/apps/web-roo-code/src/app/evals/plot.tsx index f68007cd12..a8a0066472 100644 --- a/apps/web-roo-code/src/app/evals/plot.tsx +++ b/apps/web-roo-code/src/app/evals/plot.tsx @@ -15,7 +15,7 @@ type PlotProps = { type LabelPosition = "top" | "bottom" | "left" | "right" export const Plot = ({ tableData }: PlotProps) => { - const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 50), [tableData]) + const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 60), [tableData]) const chartConfig = useMemo( () => chartData.reduce((acc, run) => ({ ...acc, [run.label]: run }), {} as ChartConfig), @@ -235,7 +235,7 @@ export const Plot = ({ tableData }: PlotProps) => {
- (Note: Models with a cost of $50 or more are excluded from the scatter plot.) + (Note: Models with a cost of $60 or more are excluded from the scatter plot.)
)