PreRelease v2

This commit is contained in:
2026-03-28 23:46:45 +01:00
parent 6bf998a52a
commit 9993bd232f
39 changed files with 3964 additions and 1469 deletions

View File

@@ -38,6 +38,16 @@ export interface Contract {
exclusions?: string[];
franchise?: string;
importantDates?: string[];
explainability?: Array<{
field: string;
why: string;
sourceSnippet: string;
sourceHints?: {
page?: string | null;
section?: string | null;
confidence?: number | null;
};
}>;
} | null;
documentHash: string | null;
@@ -79,5 +89,15 @@ export interface AIAnalysisResult {
exclusions?: string[];
franchise?: string;
importantDates?: string[];
explainability?: Array<{
field: string;
why: string;
sourceSnippet: string;
sourceHints?: {
page?: string | null;
section?: string | null;
confidence?: number | null;
};
}>;
};
}