Spaces:
Running
Running
File size: 571 Bytes
ffe59ba | 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 26 27 28 29 30 31 32 33 34 | export type SampleDoc = {
id: string;
filename: string;
label: string;
description: string;
labels: string[];
};
export type ExtractedField = {
label: string;
text: string;
score: number;
};
export type DonutEntity = {
label: string;
text: string;
};
export type TriageResult = {
sampleId: string;
recognitionModel: string;
markdown: string;
donutEntities: DonutEntity[];
donutData: unknown;
glinerFields: ExtractedField[];
timings: {
recognitionMs: number;
donutMs: number;
glinerMs: number;
totalMs: number;
};
};
|