Class PushPullModelRequest
Implements
Inherited Members
Namespace: Glitch9.AIDevKit.Ollama
Assembly: Glitch9.AIDevKit.Provider.Ollama.dll
Syntax
public class PushPullModelRequest : IJsonRequest
Properties
| Edit this page View SourceInsecure
Optional. Allow insecure connections to the model library. Only use this for local development or trusted networks.
Declaration
[JsonProperty("insecure")]
public bool? Insecure { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Model
Required. The name of the model to push or pull. For example: "llama3:latest" or "user/model:tag".
Declaration
[JsonProperty("model")]
public Model Model { get; set; }
Property Value
| Type | Description |
|---|---|
| Model |
Stream
Optional. If false, response will be returned as a single response object. If true or omitted, a stream of status messages is returned.
Declaration
[JsonProperty("stream")]
public bool? Stream { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |