Table of Contents

Enum StorageMode

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

Specifies the underlying storage mode for a DataSource instance.

public enum StorageMode

Fields

Memory = 0

The data source is stored entirely in memory.

FileReadOnly = 1

The data source is backed by a file opened in read-only mode.

FileReadWrite = 2

The data source is backed by a file opened in read-write mode, allowing modifications to be automatically persisted to the file.

VectorStore = 3

The data source utilizes an external vector store for data storage.