Table of Contents

Property Question

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

Question

Gets the user's question.

public string Question { get; }

Property Value

string

Examples

pdfChat.ResponseGenerationStarted += (sender, e) =>
{
    Console.WriteLine($"Answering: {e.Question}");
};
Share