Class PushPullModelRequest
Inheritance
object
RequestBody
PushPullModelRequest
Namespace: Glitch9.AIDevKit.Ollama
Assembly: .dll
Syntax
public class PushPullModelRequest : RequestBody
Properties
Insecure
Optional. Allow insecure connections to the model library. Only use this for local development or trusted networks.
Declaration
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
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
public bool? Stream { get; set; }
Property Value
Type | Description |
---|---|
bool? |