Skip to content

Commit 561ae81

Browse files
committed
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
1 parent 7cd6520 commit 561ae81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web-roo-code/src/app/evals/plot.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type PlotProps = {
1515
type LabelPosition = "top" | "bottom" | "left" | "right"
1616

1717
export const Plot = ({ tableData }: PlotProps) => {
18-
const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 50), [tableData])
18+
const chartData = useMemo(() => tableData.filter(({ cost }) => cost < 60), [tableData])
1919

2020
const chartConfig = useMemo(
2121
() => chartData.reduce((acc, run) => ({ ...acc, [run.label]: run }), {} as ChartConfig),
@@ -235,7 +235,7 @@ export const Plot = ({ tableData }: PlotProps) => {
235235
</ScatterChart>
236236
</ChartContainer>
237237
<div className="py-4 text-xs opacity-50">
238-
(Note: Models with a cost of $50 or more are excluded from the scatter plot.)
238+
(Note: Models with a cost of $60 or more are excluded from the scatter plot.)
239239
</div>
240240
</>
241241
)

0 commit comments

Comments
 (0)