We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d624ea3 commit 9fc008eCopy full SHA for 9fc008e
1 file changed
packages/sdk/server-ai/src/api/judge/types.ts
@@ -28,12 +28,12 @@ export interface LDJudgeResult {
28
errorMessage?: string;
29
/** Whether this evaluation was sampled (i.e. actually run). False when skipped by sampling. */
30
sampled: boolean;
31
+ /** The metric key for this evaluation */
32
+ metricKey?: string;
33
/** Score between 0.0 and 1.0 indicating the evaluation result */
34
score?: number;
35
/** Reasoning behind the provided score */
36
reasoning?: string;
- /** The metric key for this evaluation */
- metricKey?: string;
37
}
38
39
/**
0 commit comments