File size: 456 Bytes
a0ebf39 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | export interface LanguageTestCase {
case_id: string;
category: string;
requirement: string;
ground_truth: string;
pdfTextSample?: string;
}
export interface JudgeResult {
pass: boolean;
reason: string;
}
export interface EvalResult {
case_id: string;
category: string;
requirement: string;
pdfTextSample?: string;
groundTruth: string;
directive: string;
outlinesCount: number;
judgePassed: boolean;
judgeReason: string;
}
|