Table of Contents

Constructor ResponseGenerationStartedEventArgs

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

ResponseGenerationStartedEventArgs(string, bool, int)

Initializes a new instance of the ResponseGenerationStartedEventArgs class.

public ResponseGenerationStartedEventArgs(string question, bool usesFullContext, int passageCount = 0)

Parameters

question string
usesFullContext bool
passageCount int

Examples

var args = new ResponseGenerationStartedEventArgs(
    question: "What is the summary of chapter 3?",
    usesFullContext: false,
    passageCount: 4);
Share