Table of Contents

Property PageStrategy

Namespace
LMKit.Retrieval.Events
Assembly
LM-Kit.NET.dll

PageStrategy

Gets the processing strategy used for the current page. Only meaningful during page processing phases.

public PageProcessingMode PageStrategy { get; }

Property Value

PageProcessingMode

Examples

pdfChat.DocumentImportProgress += (sender, e) =>
{
    if (e.Phase == DocumentImportPhase.PageProcessingStarted)
    {
        Console.WriteLine($"Page {e.PageIndex + 1} strategy: {e.PageStrategy}");
    }
};
Share