Property Phase
Phase
Gets the current phase of the import operation.
public DocumentImportPhase Phase { get; }
Property Value
Examples
pdfChat.DocumentImportProgress += (sender, e) =>
{
if (e.Phase == DocumentImportPhase.EmbeddingStarted)
{
Console.WriteLine($"Generating embeddings for {e.SectionCount} sections...");
}
};