Table of Contents

Property SectionIdentifier

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

SectionIdentifier

Gets the identifier for the section containing the text partition.

public string SectionIdentifier { get; }

Property Value

string

Examples

var matches = ragEngine.FindMatchingPartitions("vector database", topK: 3);

foreach (PartitionSimilarity match in matches)
{
    Console.WriteLine(
        $"Source: {match.DataSourceIdentifier}, Section: {match.SectionIdentifier}");
}
Share