File size: 29,147 Bytes
c09f67c | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 | import { createGoogleGenerativeAI } from "@ai-sdk/google";
import { createMistral } from "@ai-sdk/mistral";
import { createLoggerWithContext } from "@midday/logger";
import { generateObject } from "ai";
import type { z } from "zod/v4";
import type {
ExtractionConfig,
ModelConfig,
} from "../config/extraction-config";
import type { PromptComponents } from "../prompts/factory";
import { createFieldSpecificPrompt } from "../prompts/field-specific";
import type { DocumentFormat } from "../utils/format-detection";
import { extractTextFromPdf } from "../utils/pdf-text-extract";
import { retryCall } from "../utils/retry";
const google = createGoogleGenerativeAI({
apiKey: process.env.GOOGLE_GENERATIVE_AI_API_KEY!,
});
const mistral = createMistral({
apiKey: process.env.MISTRAL_API_KEY!,
});
/**
* Check if an error is a rate limit error
*/
function isRateLimitError(error: unknown): boolean {
if (!(error instanceof Error)) return false;
const message = error.message.toLowerCase();
return (
message.includes("rate limit") ||
message.includes("rate_limit") ||
message.includes("too many requests") ||
message.includes("quota") ||
message.includes("429") ||
message.includes("resource_exhausted")
);
}
export interface ExtractionResult<T> {
data: T;
qualityScore: {
score: number;
issues: string[];
missingCriticalFields: string[];
invalidFields: string[];
};
}
export interface ExtractionOptions {
companyName?: string | null;
logger?: ReturnType<typeof createLoggerWithContext>;
}
/**
* Base extraction engine that handles multi-pass extraction strategy
* for both invoices and receipts
*/
export abstract class BaseExtractionEngine<T extends z.ZodSchema> {
protected config: ExtractionConfig<T>;
protected logger: ReturnType<typeof createLoggerWithContext>;
constructor(
config: ExtractionConfig<T>,
logger?: ReturnType<typeof createLoggerWithContext>,
) {
this.config = config;
this.logger =
logger ||
createLoggerWithContext(`BaseExtractionEngine:${this.getDocumentType()}`);
}
protected getDocumentType(): string {
return "unknown";
}
/**
* Extract data using a specific provider and model
*/
protected async extractWithProvider(
documentUrl: string,
prompt: string,
modelConfig: ModelConfig,
): Promise<z.infer<T>> {
const contentField =
this.config.contentType === "file"
? {
type: "file" as const,
data: documentUrl,
mediaType: this.config.mediaType,
}
: {
type: "image" as const,
image: documentUrl,
};
const model =
modelConfig.provider === "mistral"
? mistral(modelConfig.model)
: google(modelConfig.model);
// Provider-specific options
const providerOptions =
modelConfig.provider === "mistral"
? {
mistral: {
documentPageLimit: 10,
},
}
: undefined;
const result = await retryCall(
() =>
generateObject({
model,
schema: this.config.schema,
temperature: 0.1,
abortSignal: AbortSignal.timeout(this.config.timeout),
messages: [
{
role: "system",
content: prompt,
},
{
role: "user",
content: [contentField],
},
],
...(providerOptions && { providerOptions }),
}),
this.config.retries,
2000, // Start with 2s delay
);
return result.object as z.infer<T>;
}
/**
* Extract with cascading fallback across providers
* Tries primary -> secondary -> tertiary with rate limit detection
*/
protected async extractWithCascadingFallback(
documentUrl: string,
prompt: string,
): Promise<{ result: z.infer<T>; usedModel: ModelConfig }> {
const models = [
{ config: this.config.models.primary, name: "primary" },
{ config: this.config.models.secondary, name: "secondary" },
{ config: this.config.models.tertiary, name: "tertiary" },
];
let lastError: Error | null = null;
for (const { config: modelConfig, name } of models) {
try {
this.logger.info(`Attempting extraction with ${name} model`, {
provider: modelConfig.provider,
model: modelConfig.model,
});
const result = await this.extractWithProvider(
documentUrl,
prompt,
modelConfig,
);
this.logger.info(`Extraction succeeded with ${name} model`, {
provider: modelConfig.provider,
model: modelConfig.model,
});
return { result, usedModel: modelConfig };
} catch (error) {
lastError = error instanceof Error ? error : new Error(String(error));
const isRateLimit = isRateLimitError(error);
this.logger.warn(`${name} model extraction failed`, {
provider: modelConfig.provider,
model: modelConfig.model,
isRateLimit,
error: lastError.message,
});
// Continue to next model on rate limit or any error
}
}
// All models failed
throw lastError || new Error("All extraction models failed");
}
/**
* Extract with primary model (uses cascading fallback)
*/
protected async extractWithPrimaryModel(
documentUrl: string,
prompt: string,
): Promise<z.infer<T>> {
const { result } = await this.extractWithCascadingFallback(
documentUrl,
prompt,
);
return result;
}
/**
* Extract with secondary/fallback model (skips primary)
*/
protected async extractWithFallbackModel(
documentUrl: string,
prompt: string,
): Promise<z.infer<T>> {
// Try secondary first, then tertiary
try {
return await this.extractWithProvider(
documentUrl,
prompt,
this.config.models.secondary,
);
} catch (error) {
this.logger.warn("Secondary model failed, trying tertiary", {
error: error instanceof Error ? error.message : "Unknown error",
});
return await this.extractWithProvider(
documentUrl,
prompt,
this.config.models.tertiary,
);
}
}
/**
* Extract using text fallback - extracts text from PDF and sends as text input
* Used as last resort when PDF processing times out
*/
protected async extractWithTextFallback(
documentUrl: string,
prompt: string,
modelConfig: ModelConfig,
): Promise<z.infer<T>> {
// Extract text from PDF
const extractedText = await extractTextFromPdf(documentUrl);
if (!extractedText) {
throw new Error(
"Failed to extract text from PDF - PDF may be image-based or corrupted",
);
}
// Modify prompt to indicate text was extracted from PDF
const modifiedPrompt = `${prompt}\n\nNOTE: The document content below was extracted as text from a PDF. Some formatting, layout, or visual elements may be missing. Please extract the requested information from the text content.`;
const model =
modelConfig.provider === "mistral"
? mistral(modelConfig.model)
: google(modelConfig.model);
// Send extracted text as text content (not file)
const result = await retryCall(
() =>
generateObject({
model,
schema: this.config.schema,
temperature: 0.1,
abortSignal: AbortSignal.timeout(this.config.timeout),
messages: [
{
role: "system",
content: modifiedPrompt,
},
{
role: "user",
content: [
{
type: "text" as const,
text: extractedText,
},
],
},
],
}),
this.config.retries,
2000, // Start with 2s delay
);
return result.object as z.infer<T>;
}
/**
* Analyze failure pattern to determine best refinement strategy
*/
protected analyzeFailurePattern(
result: z.infer<T>,
qualityScore: {
score: number;
issues: string[];
missingCriticalFields: string[];
invalidFields: string[];
},
): {
strategy:
| "field_specific"
| "mathematical"
| "format_aware"
| "comprehensive";
criticalFieldsMissing: boolean;
consistencyIssues: boolean;
formatIssues: boolean;
} {
const criticalFieldsMissing = qualityScore.missingCriticalFields.length > 0;
const hasNumericFields = qualityScore.missingCriticalFields.some(
(f) => f.includes("amount") || f.includes("rate"),
);
const detectedFormat = this.detectFormat(result);
let strategy:
| "field_specific"
| "mathematical"
| "format_aware"
| "comprehensive" = "field_specific";
if (criticalFieldsMissing && hasNumericFields && detectedFormat) {
strategy = "comprehensive"; // Use both mathematical and format-aware
} else if (hasNumericFields) {
strategy = "mathematical"; // Focus on calculating missing numeric fields
} else if (detectedFormat) {
strategy = "format_aware"; // Use format-specific prompts
}
return {
strategy,
criticalFieldsMissing,
consistencyIssues: qualityScore.invalidFields.length > 0,
formatIssues: detectedFormat !== undefined,
};
}
/**
* Re-extract specific fields in parallel (batched by priority)
*/
protected async reExtractFields(
documentUrl: string,
fields: string[],
companyName?: string | null,
format?: DocumentFormat | undefined,
): Promise<Partial<z.infer<T>>> {
if (fields.length === 0) {
return {};
}
// Sort fields by priority (higher priority first)
const sortedFields = [...fields].sort((a, b) => {
const priorityA = this.config.fieldPriority[a] || 0;
const priorityB = this.config.fieldPriority[b] || 0;
return priorityB - priorityA;
});
// Batch critical fields (priority >= 8) separately from others
const criticalFields = sortedFields.filter(
(f) => (this.config.fieldPriority[f] || 0) >= 8,
);
const otherFields = sortedFields.filter(
(f) => (this.config.fieldPriority[f] || 0) < 8,
);
const reExtractedFields: Partial<z.infer<T>> = {};
// Extract critical fields first (in parallel)
if (criticalFields.length > 0) {
this.logger.info("Re-extracting critical fields in parallel", {
fields: criticalFields,
count: criticalFields.length,
});
const criticalResults = await Promise.allSettled(
criticalFields.map(async (field) => {
try {
// Use format-aware prompt if format is available
let fieldPrompt = createFieldSpecificPrompt(
field,
this.getDocumentType() as "invoice" | "receipt",
companyName,
);
// Enhance prompt with format hints if available
if (format) {
const formatHints = this.getFormatHintsForField(field, format);
if (formatHints) {
fieldPrompt = `${fieldPrompt}\n\n${formatHints}`;
}
}
// Use secondary model (Google) for field re-extraction for reliability
const modelConfig = this.config.models.secondary;
const model =
modelConfig.provider === "mistral"
? mistral(modelConfig.model)
: google(modelConfig.model);
const result = await retryCall(
() =>
generateObject({
model,
schema: this.config.schema,
temperature: 0.1,
abortSignal: AbortSignal.timeout(90000),
messages: [
{
role: "system",
content: fieldPrompt,
},
{
role: "user",
content: [
this.config.contentType === "file"
? {
type: "file" as const,
data: documentUrl,
mediaType: this.config.mediaType,
}
: {
type: "image" as const,
image: documentUrl,
},
],
},
],
}),
1, // 1 retry (2 total attempts) for field-specific extraction
1000,
);
const fieldValue = (result.object as any)[field];
if (fieldValue !== null && fieldValue !== undefined) {
return { field, value: fieldValue };
}
return null;
} catch (error) {
this.logger.warn(`Failed to re-extract field ${field}`, {
field,
error: error instanceof Error ? error.message : "Unknown error",
});
return null;
}
}),
);
// Process critical field results
for (const result of criticalResults) {
if (result.status === "fulfilled" && result.value) {
(reExtractedFields as any)[result.value.field] = result.value.value;
}
}
}
// Extract other fields in parallel
if (otherFields.length > 0) {
this.logger.info("Re-extracting other fields in parallel", {
fields: otherFields,
count: otherFields.length,
});
const otherResults = await Promise.allSettled(
otherFields.map(async (field) => {
try {
// Use format-aware prompt if format is available
let fieldPrompt = createFieldSpecificPrompt(
field,
this.getDocumentType() as "invoice" | "receipt",
companyName,
);
// Enhance prompt with format hints if available
if (format) {
const formatHints = this.getFormatHintsForField(field, format);
if (formatHints) {
fieldPrompt = `${fieldPrompt}\n\n${formatHints}`;
}
}
// Use secondary model (Google) for field re-extraction for reliability
const modelConfig = this.config.models.secondary;
const model =
modelConfig.provider === "mistral"
? mistral(modelConfig.model)
: google(modelConfig.model);
const result = await retryCall(
() =>
generateObject({
model,
schema: this.config.schema,
temperature: 0.1,
abortSignal: AbortSignal.timeout(30000),
messages: [
{
role: "system",
content: fieldPrompt,
},
{
role: "user",
content: [
this.config.contentType === "file"
? {
type: "file" as const,
data: documentUrl,
mediaType: this.config.mediaType,
}
: {
type: "image" as const,
image: documentUrl,
},
],
},
],
}),
1,
1000,
);
const fieldValue = (result.object as any)[field];
if (fieldValue !== null && fieldValue !== undefined) {
return { field, value: fieldValue };
}
return null;
} catch (error) {
this.logger.warn(`Failed to re-extract field ${field}`, {
field,
error: error instanceof Error ? error.message : "Unknown error",
});
return null;
}
}),
);
// Process other field results
for (const result of otherResults) {
if (result.status === "fulfilled" && result.value) {
(reExtractedFields as any)[result.value.field] = result.value.value;
}
}
}
return reExtractedFields;
}
/**
* Main extraction method - implements multi-pass strategy
*/
async extract(
documentUrl: string,
options: ExtractionOptions = {},
): Promise<ExtractionResult<z.infer<T>>> {
const { companyName } = options;
const logger = options.logger || this.logger;
if (!documentUrl) {
throw new Error("Document URL is required");
}
// Get prompt factory
const promptFactory = this.config.promptFactory;
// Pass 1: Extract with primary model and standard prompt
let result: z.infer<T>;
try {
// Start with basic prompt (format will be detected after Pass 1)
const promptComponents = promptFactory(companyName);
const prompt = this.composePrompt(promptComponents, false);
logger.info("Pass 1: Extracting with cascading fallback", {
pass: 1,
primaryModel: `${this.config.models.primary.provider}:${this.config.models.primary.model}`,
});
result = await this.extractWithPrimaryModel(documentUrl, prompt);
} catch (error) {
// Check if this is a timeout error and we're processing a PDF
const isTimeoutError =
(error instanceof DOMException && error.code === 23) ||
(error instanceof Error &&
(error.name === "TimeoutError" ||
error.message.includes("timeout") ||
error.message.includes("timed out")));
const isPdfFile =
this.config.contentType === "file" &&
this.config.mediaType === "application/pdf";
// If timeout error on PDF, try text extraction fallback as last resort
if (isTimeoutError && isPdfFile) {
logger.warn(
"PDF extraction timed out, attempting text extraction fallback",
{
error: error instanceof Error ? error.message : "Unknown error",
},
);
try {
const promptComponents = promptFactory(companyName);
const prompt = this.composePrompt(promptComponents, false);
result = await this.extractWithTextFallback(
documentUrl,
prompt,
this.config.models.secondary,
);
logger.info("Text extraction fallback succeeded", {
pass: 1,
fallback: "text-extraction",
});
return {
data: result,
qualityScore: this.calculateQualityScore(result),
};
} catch (textFallbackError) {
logger.error("Text extraction fallback also failed", {
error:
textFallbackError instanceof Error
? textFallbackError.message
: "Unknown error",
});
// Fall through to try fallback model
}
}
logger.warn("Pass 1 failed, trying fallback model immediately", {
error: error instanceof Error ? error.message : "Unknown error",
});
// If primary fails completely, try fallback model immediately
const fallbackPromptComponents = promptFactory(companyName, undefined);
const fallbackPrompt = this.composePrompt(fallbackPromptComponents, true);
result = await this.extractWithFallbackModel(documentUrl, fallbackPrompt);
return {
data: result,
qualityScore: this.calculateQualityScore(result),
};
}
// Check data quality (subclasses will provide these functions)
const qualityScore = this.calculateQualityScore(result);
logger.info("Pass 1 quality score", {
pass: 1,
score: qualityScore.score,
issues: qualityScore.issues,
missingCriticalFields: qualityScore.missingCriticalFields,
});
// If quality is good, return result
if (!this.isDataQualityPoor(result)) {
return { data: result, qualityScore };
}
// Pass 2: Re-extract with fallback model and chain-of-thought prompt
logger.info(
"Pass 1 quality poor, running Pass 2 with fallback model and chain-of-thought",
{
pass: 2,
model: `${this.config.models.secondary.provider}:${this.config.models.secondary.model}`,
},
);
try {
// Detect format from initial extraction for adaptive prompts
const detectedFormat = this.detectFormat(result);
const chainOfThoughtPromptComponents = promptFactory(
companyName,
detectedFormat,
);
const chainOfThoughtPrompt = this.composePrompt(
chainOfThoughtPromptComponents,
true,
);
const fallbackResult = await this.extractWithFallbackModel(
documentUrl,
chainOfThoughtPrompt,
);
// Calculate confidence scores for both extractions
const primaryQuality = this.calculateQualityScore(result);
const fallbackQuality = this.calculateQualityScore(fallbackResult);
const primaryConfidence = this.calculateConfidence(
result,
primaryQuality,
);
const fallbackConfidence = this.calculateConfidence(
fallbackResult,
fallbackQuality,
);
logger.info("Confidence scores for Pass 2 merge", {
primaryConfidence: primaryConfidence.toFixed(2),
fallbackConfidence: fallbackConfidence.toFixed(2),
});
// Merge results intelligently with confidence weighting
result = this.mergeResultsWithConfidence(
result,
fallbackResult,
primaryConfidence,
fallbackConfidence,
);
// Re-check quality after merge
const mergedQualityScore = this.calculateQualityScore(result);
logger.info("Pass 2 merged quality score", {
pass: 2,
score: mergedQualityScore.score,
issues: mergedQualityScore.issues,
});
// If quality is now good, return merged result
if (!this.isDataQualityPoor(result)) {
return { data: result, qualityScore: mergedQualityScore };
}
} catch (fallbackError) {
logger.warn("Pass 2 fallback extraction failed", {
error:
fallbackError instanceof Error
? fallbackError.message
: "Unknown error",
});
// Continue to Pass 3 even if Pass 2 fails
}
// Pass 3: Targeted field re-extraction for missing/invalid fields
const fieldsToReExtract = this.getFieldsNeedingReExtraction(result);
if (fieldsToReExtract.length > 0) {
logger.info("Pass 3: Re-extracting specific fields", {
pass: 3,
fields: fieldsToReExtract,
count: fieldsToReExtract.length,
});
try {
const reExtractedFields = await this.reExtractFields(
documentUrl,
fieldsToReExtract,
companyName,
);
// Merge re-extracted fields back into result
result = this.mergeResults(result, reExtractedFields);
const finalQualityScore = this.calculateQualityScore(result);
logger.info("Pass 3 final quality score", {
pass: 3,
score: finalQualityScore.score,
issues: finalQualityScore.issues,
});
} catch (reExtractError) {
logger.warn("Pass 3 field re-extraction failed", {
error:
reExtractError instanceof Error
? reExtractError.message
: "Unknown error",
});
// Return what we have even if re-extraction fails
}
}
// Pass 4: Cross-field consistency validation and mathematical fixes
const consistencyResult = this.validateConsistency(result);
if (
consistencyResult.issues.length > 0 ||
consistencyResult.suggestedFixes.length > 0
) {
logger.info("Pass 4: Cross-field consistency validation", {
pass: 4,
issues: consistencyResult.issues.length,
suggestedFixes: consistencyResult.suggestedFixes.length,
});
// Apply suggested fixes
if (consistencyResult.suggestedFixes.length > 0) {
result = this.applyConsistencyFixes(
result,
consistencyResult.suggestedFixes,
);
logger.info("Applied consistency fixes", {
fixesApplied: consistencyResult.suggestedFixes.map((f) => f.field),
});
}
// Log consistency issues
if (consistencyResult.issues.length > 0) {
logger.warn("Cross-field consistency issues found", {
issues: consistencyResult.issues.map((i) => ({
field: i.field,
issue: i.issue,
severity: i.severity,
})),
});
}
}
return {
data: result,
qualityScore: this.calculateQualityScore(result),
};
}
/**
* Get format-specific hints for a field
*/
protected getFormatHintsForField(
field: string,
format: DocumentFormat,
): string | null {
const hints: string[] = [];
if (field.includes("amount") || field.includes("rate")) {
if (format.numberFormat === "european") {
hints.push(
"NUMBER FORMAT: Use European format (1.234,56) - comma as decimal separator.",
);
}
}
if (field.includes("date")) {
if (format.dateFormat === "european") {
hints.push(
"DATE FORMAT: Convert from DD/MM/YYYY to YYYY-MM-DD format.",
);
}
}
if (field.includes("tax")) {
if (format.taxTerm === "vat") {
hints.push("Look for VAT, MwSt, TVA, or IVA labels.");
} else if (format.taxTerm === "gst") {
hints.push("Look for GST labels.");
}
}
return hints.length > 0 ? hints.join("\n") : null;
}
/**
* Compose prompt from components
*/
protected composePrompt(
components: PromptComponents,
useChainOfThought: boolean,
): string {
const parts: string[] = [];
parts.push(components.base);
parts.push(
"Extract structured data with maximum accuracy. Follow these instructions precisely:",
);
parts.push("");
parts.push(components.examples);
if (useChainOfThought && components.chainOfThought) {
parts.push("");
parts.push(components.chainOfThought);
}
if (components.context) {
parts.push("");
parts.push(components.context);
}
parts.push("");
parts.push(components.requirements);
parts.push("");
parts.push(components.fieldRules);
parts.push("");
parts.push(components.accuracyGuidelines);
parts.push("");
parts.push(components.commonErrors);
parts.push("");
parts.push(components.validation);
return parts.join("\n");
}
/**
* Check if data quality is poor using configurable threshold
*/
protected isDataQualityPoor(result: z.infer<T>): boolean {
const qualityScore = this.calculateQualityScore(result);
return (
qualityScore.score < this.config.qualityThreshold ||
qualityScore.missingCriticalFields.length > 0
);
}
/**
* Detect document format from extracted data
*/
protected abstract detectFormat(
result: z.infer<T>,
): DocumentFormat | undefined;
/**
* Validate cross-field consistency
*/
protected abstract validateConsistency(result: z.infer<T>): {
isValid: boolean;
issues: Array<{
field: string;
issue: string;
severity: "error" | "warning";
}>;
suggestedFixes: Array<{
field: string;
value: any;
reason: string;
}>;
};
/**
* Apply consistency fixes
*/
protected abstract applyConsistencyFixes(
result: z.infer<T>,
fixes: Array<{ field: string; value: any; reason: string }>,
): z.infer<T>;
/**
* Calculate confidence score for extraction result (0-1)
*/
protected abstract calculateConfidence(
result: z.infer<T>,
qualityScore: {
score: number;
missingCriticalFields: string[];
},
): number;
/**
* Merge results with confidence weighting
*/
protected mergeResultsWithConfidence(
primary: z.infer<T>,
secondary: Partial<z.infer<T>>,
_primaryConfidence: number,
_secondaryConfidence: number,
): z.infer<T> {
// Default implementation uses regular merge
// Subclasses can override for confidence-weighted merging
return this.mergeResults(primary, secondary);
}
/**
* Abstract methods that subclasses must implement
*/
protected abstract calculateQualityScore(result: z.infer<T>): {
score: number;
issues: string[];
missingCriticalFields: string[];
invalidFields: string[];
};
protected abstract getFieldsNeedingReExtraction(result: z.infer<T>): string[];
protected abstract mergeResults(
primary: z.infer<T>,
secondary: Partial<z.infer<T>>,
): z.infer<T>;
}
|