From addae24cc4198d351435d7cc8b300db277909018 Mon Sep 17 00:00:00 2001 From: Juan Pablo Vega Date: Wed, 27 Nov 2024 12:59:42 +0100 Subject: [PATCH] add 'true' to ignoreErrors in Evaluations when calling /generate --- .../src/components/EvaluationTable/ABTestingEvaluationTable.tsx | 2 ++ .../components/EvaluationTable/SingleModelEvaluationTable.tsx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/agenta-web/src/components/EvaluationTable/ABTestingEvaluationTable.tsx b/agenta-web/src/components/EvaluationTable/ABTestingEvaluationTable.tsx index d8d1f49f63..9f215d1559 100644 --- a/agenta-web/src/components/EvaluationTable/ABTestingEvaluationTable.tsx +++ b/agenta-web/src/components/EvaluationTable/ABTestingEvaluationTable.tsx @@ -307,6 +307,8 @@ const ABTestingEvaluationTable: React.FC = ({ variantData[idx].isChatVariant ? testsetRowToChatMessages(evaluation.testset.csvdata[rowIndex], false) : [], + undefined, + true, ) let res: BaseResponse | undefined diff --git a/agenta-web/src/components/EvaluationTable/SingleModelEvaluationTable.tsx b/agenta-web/src/components/EvaluationTable/SingleModelEvaluationTable.tsx index 9811687b4f..3de68306b1 100644 --- a/agenta-web/src/components/EvaluationTable/SingleModelEvaluationTable.tsx +++ b/agenta-web/src/components/EvaluationTable/SingleModelEvaluationTable.tsx @@ -340,6 +340,8 @@ const SingleModelEvaluationTable: React.FC = ({ variantData[idx].isChatVariant ? testsetRowToChatMessages(evaluation.testset.csvdata[rowIndex], false) : [], + undefined, + true, ) let res: BaseResponse | undefined