Table of Contents

Property Name

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

Name

Gets the name of the indexed document.

public string Name { get; }

Property Value

string

Examples

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