UNPKG

llm-extract

Version:

Modular SDK for structured text extraction from documents using LLMs

9 lines 356 B
import { DocumentProcessor, ParsedDocument } from '../types'; export interface PDFProcessorOptions { maxPages?: number; } export declare class PDFProcessor implements DocumentProcessor { readonly supportedTypes: string[]; parseDocument(buffer: Buffer, options?: PDFProcessorOptions): Promise<ParsedDocument>; } //# sourceMappingURL=pdf.d.ts.map