Class ModelDetails
Detailed metadata about a model.
Inheritance
object
ModelDetails
Namespace: Glitch9.AIDevKit.Ollama
Assembly: .dll
Syntax
public class ModelDetails
Properties
BaseId
Required. The parent model if this model is derived from another.
Declaration
public string BaseId { get; set; }
Property Value
Type | Description |
---|---|
string |
Families
Required. List of families this model belongs to.
Declaration
public List<string> Families { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Family
Required. The main family of the model.
Declaration
public string Family { get; set; }
Property Value
Type | Description |
---|---|
string |
Format
Required. The format of the model (e.g., gguf).
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
string |
ParameterSize
Required. The parameter size of the model (e.g., "7.2B").
Declaration
public string ParameterSize { get; set; }
Property Value
Type | Description |
---|---|
string |
QuantizationLevel
Required. The quantization level used by the model.
Declaration
public string QuantizationLevel { get; set; }
Property Value
Type | Description |
---|---|
string |