Table of Contents

Property Model

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

Model

Gets the vision language model instance used to drive the document splitting process.

public LM Model { get; }

Property Value

LM

The vision-capable LM model that performs inference for boundary detection.

Examples

var splitter = new DocumentSplitting(LM.LoadFromModelID("qwen3-vl:8b"));
Console.WriteLine($"Model context length: {splitter.Model.ContextLength}");
Console.WriteLine($"Vision support: {splitter.Model.HasVision}");