Table of Contents

Property Model

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

Model

Gets the language model used for generating responses.

public LM Model { get; }

Property Value

LM

Examples

using var chat = new RagChat(ragEngine, chatModel);

Console.WriteLine($"Chat model: {chat.Model.Name}");
Share