Table of Contents

Field SourceUriKey

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

The metadata key used to store the source URI in section metadata.

public const string SourceUriKey = "lmkit_sec_doc_sourceuri"

Returns

string
The metadata key used to store the source URI in section metadata.

Examples

// Use the key to retrieve the source URI from partition metadata
if (partition.Metadata.TryGet(DocumentMetadata.SourceUriKey, out var uriMeta))
{
    Console.WriteLine($"Source: {uriMeta.Value}");
}
Share