Property Metadata
Metadata
Gets the collection of metadata associated with this text partition similarity result.
public MetadataCollection Metadata { get; }
Property Value
Examples
PartitionSimilarity match = ragEngine.FindMatchingPartitions("query", topK: 1)[0];
foreach (var entry in match.Metadata)
{
Console.WriteLine($"{entry.Key}: {entry.Value}");
}