Table of Contents

Property Payload

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

Payload

The optional raw payload from which the vector embedding was generated.

public string Payload { get; }

Property Value

string

Examples

var matches = ragEngine.FindMatchingPartitions("semantic search", topK: 3);

foreach (PartitionSimilarity match in matches)
{
    Console.WriteLine($"Matched text: {match.Payload}");
}
Share