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