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
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}");