We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce9592 commit dfac773Copy full SHA for dfac773
evals/git-evals/run-git-evals.ts
@@ -248,7 +248,11 @@ Explain your reasoning in detail.`,
248
return {
249
...evalRun,
250
judging_results: {
251
- analysis: `Judging failed due to error:\n${judgingError instanceof Error ? errorToObject(judgingError) : JSON.stringify(judgingError)}`,
+ analysis: `Judging failed due to error:\n${JSON.stringify(
252
+ judgingError instanceof Error
253
+ ? errorToObject(judgingError)
254
+ : judgingError,
255
+ )}`,
256
strengths: [],
257
weaknesses: ['Judging process encountered an error'],
258
metrics: {
0 commit comments