Table of Contents

Property Metadata

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

Metadata

Gets the collection of metadata associated with this text partition similarity result.

public MetadataCollection Metadata { get; }

Property Value

MetadataCollection

Examples

PartitionSimilarity match = ragEngine.FindMatchingPartitions("query", topK: 1)[0];

foreach (var entry in match.Metadata)
{
    Console.WriteLine($"{entry.Key}: {entry.Value}");
}
Share