Skip to content

Commit

Permalink
Merge pull request #2311 from Agenta-AI/fix/ignore-errors-missing-in-…
Browse files Browse the repository at this point in the history
…evals

[Fix] failed calls in Evaluations due to 401
  • Loading branch information
mmabrouk authored Nov 27, 2024
2 parents 5fb7f0b + addae24 commit 3829495
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,8 @@ const ABTestingEvaluationTable: React.FC<EvaluationTableProps> = ({
variantData[idx].isChatVariant
? testsetRowToChatMessages(evaluation.testset.csvdata[rowIndex], false)
: [],
undefined,
true,
)

let res: BaseResponse | undefined
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ const SingleModelEvaluationTable: React.FC<EvaluationTableProps> = ({
variantData[idx].isChatVariant
? testsetRowToChatMessages(evaluation.testset.csvdata[rowIndex], false)
: [],
undefined,
true,
)

let res: BaseResponse | undefined
Expand Down

0 comments on commit 3829495

Please sign in to comment.