Property Payload
Payload
The optional raw payload from which the vector embedding was generated.
public string Payload { get; }
Property Value
Examples
var matches = ragEngine.FindMatchingPartitions("semantic search", topK: 3);
foreach (PartitionSimilarity match in matches)
{
Console.WriteLine($"Matched text: {match.Payload}");
}