enquire-mcp API reference - v4.0.0-rc.7
    Preparing search index...

    Interface OcrPdfResult

    Envelope returned by ocrPdf.

    mean_confidence is the average across text pages with valid finite confidence, or null when none is available. langs echoes the language(s) used so the caller can audit what was actually tried (especially relevant when defaulting to 'eng').

    interface OcrPdfResult {
        complete: boolean;
        full_text: string;
        has_text: boolean;
        langs: string;
        mean_confidence: number | null;
        mtime: string;
        name: string;
        page_count: number;
        pages: OcrPdfPage[];
        path: string;
        size_bytes: number;
        total_page_count: number;
    }
    Index
    complete: boolean

    True only when every requested page was OCR'd or proven empty.

    full_text: string
    has_text: boolean
    langs: string

    Languages used for OCR (whatever the caller passed).

    mean_confidence: number | null

    Mean finite confidence across pages with text, or null when unavailable.

    mtime: string
    name: string
    page_count: number
    pages: OcrPdfPage[]
    path: string
    size_bytes: number
    total_page_count: number