Table of Contents

Property Response

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

Response

Gets the generated text response.

public TextGenerationResult Response { get; }

Property Value

TextGenerationResult

Examples

var result = await chat.SubmitAsync("Summarize the document.");
Console.WriteLine(result.Response.Completion);
Share