Table of Contents

Property LoadedAtUtc

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

LoadedAtUtc

Gets the UTC timestamp when the document was loaded.

public DateTime LoadedAtUtc { get; }

Property Value

DateTime

Examples

var result = await chat.LoadDocumentAsync("report.pdf");
Console.WriteLine($"Loaded at: {result.LoadedAtUtc:u}");
Share