Table of Contents

Class ModelDetails

Detailed metadata about a model.

public class ModelDetails
Inheritance
object
ModelDetails

Properties

BaseId

Required. The parent model if this model is derived from another.

public string BaseId { get; set; }

Property Value

string

Families

Required. List of families this model belongs to.

public List<string> Families { get; set; }

Property Value

List<string>

Family

Required. The main family of the model.

public string Family { get; set; }

Property Value

string

Format

Required. The format of the model (e.g., gguf).

public string Format { get; set; }

Property Value

string

ParameterSize

Required. The parameter size of the model (e.g., "7.2B").

public string ParameterSize { get; set; }

Property Value

string

QuantizationLevel

Required. The quantization level used by the model.

public string QuantizationLevel { get; set; }

Property Value

string