Table of Contents

Property Query

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

Query

Gets the query that was used for retrieval.

public string Query { get; }

Property Value

string

Examples

pdfChat.PassageRetrievalCompleted += (sender, e) =>
{
    Console.WriteLine($"Searched for: {e.Query}");
};
Share