From 046baaf6761f6bebac31433c69a5500eafe9085c Mon Sep 17 00:00:00 2001 From: Ayush8923 <80516839+Ayush8923@users.noreply.github.com> Date: Fri, 17 Jul 2026 13:45:04 +0530 Subject: [PATCH] fix(evlas): added the run mode in the evals run api payload --- app/(main)/evaluations/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(main)/evaluations/page.tsx b/app/(main)/evaluations/page.tsx index 7f500cc..28d4c74 100644 --- a/app/(main)/evaluations/page.tsx +++ b/app/(main)/evaluations/page.tsx @@ -230,8 +230,8 @@ function SimplifiedEvalContent() { experiment_name: experimentName.trim(), config_id: selectedConfigId, config_version: selectedConfigVersion, + run_mode: runMode === "fast" ? "fast" : "batch", }; - if (runMode === "fast") payload.run_mode = "fast"; await apiFetch("/api/evaluations", apiKey, { method: "POST",