Property RetrievedCount
RetrievedCount
Gets the number of passages retrieved.
public int RetrievedCount { get; }
Property Value
Examples
pdfChat.PassageRetrievalCompleted += (sender, e) =>
{
Console.WriteLine($"Found {e.RetrievedCount} relevant passages");
};