Table of Contents

Property Id

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

Id

Gets the unique identifier of the indexed document.

public string Id { get; }

Property Value

string

Examples

var result = await chat.LoadDocumentAsync("report.pdf");
Console.WriteLine($"Document ID: {result.Id}");
Share