Table of Contents

Property Elapsed

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

Elapsed

Gets the elapsed time for the retrieval operation.

public TimeSpan Elapsed { get; }

Property Value

TimeSpan

Examples

pdfChat.PassageRetrievalCompleted += (sender, e) =>
{
    Console.WriteLine($"Passage retrieval completed in {e.Elapsed.TotalMilliseconds:F0} ms");
};
Share