Table of Contents

Namespace LMKit.Model.Gguf

Classes

GgufMetadata

Purely managed reader for GGUF model metadata: the file header, the complete key-value store, and the tensor-info table. No native library is involved and tensor weights are never read, so inspection is near-instant even for very large files and is safe to run on untrusted input before native code touches it.

GgufTensorInfo

Describes one entry of a GGUF tensor-info table: the tensor name, its shape, the raw ggml storage type id, and the byte offset of its data within the tensor-data section. Instances are produced by GgufMetadata; the tensor weights themselves are never read.

Share