Property SectionIdentifier
SectionIdentifier
Gets the identifier for the section containing the text partition.
public string SectionIdentifier { get; }
Property Value
Examples
var matches = ragEngine.FindMatchingPartitions("vector database", topK: 3);
foreach (PartitionSimilarity match in matches)
{
Console.WriteLine(
$"Source: {match.DataSourceIdentifier}, Section: {match.SectionIdentifier}");
}