muthuk1's picture
Add missing files: LICENSE, Dockerfile, .github, tests, e2e, eval, scripts, configs
a0ebf39 verified
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;
}