Table of Contents

Field DocumentNameKey

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

The metadata key used to store the document name in section metadata.

public const string DocumentNameKey = "lmkit_sec_doc_docname"

Returns

string
The metadata key used to store the document name in section metadata.

Examples

// Use the key to retrieve the document name from partition metadata
if (partition.Metadata.TryGet(DocumentMetadata.DocumentNameKey, out var nameMeta))
{
    Console.WriteLine($"Document: {nameMeta.Value}");
}
Share