Table of Contents

Property ContextRemainingSpace

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

ContextRemainingSpace

Remaining token budget currently available in the context window.

public int ContextRemainingSpace { get; }

Property Value

int

Examples

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

Console.WriteLine($"Remaining context space: {chat.ContextRemainingSpace} tokens");
Share