Table of Contents

Class RunningModel

Namespace
OllamaSharp.Models
Assembly
OllamaSharp.dll

Represents a running model.

[JsonUnmappedMemberHandling(JsonUnmappedMemberHandling.Skip)]
public class RunningModel : Model
Inheritance
RunningModel
Inherited Members

Properties

ContextLength

The context length of the loaded model.

[JsonPropertyName("context_length")]
public int ContextLength { get; set; }

Property Value

int

ExpiresAt

The time the model will be unloaded from memory.

[JsonPropertyName("expires_at")]
public DateTime ExpiresAt { get; set; }

Property Value

DateTime

SizeVram

The amount of vram (in bytes) used by the model.

[JsonPropertyName("size_vram")]
public long SizeVram { get; set; }

Property Value

long