Table of Contents

Class PushPullModelRequest

public class PushPullModelRequest : IJsonRequest
Inheritance
object
PushPullModelRequest

Properties

Insecure

Optional. Allow insecure connections to the model library. Only use this for local development or trusted networks.

public bool? Insecure { get; set; }

Property Value

bool?

Model

Required. The name of the model to push or pull. For example: "llama3:latest" or "user/model:tag".

public Model Model { get; set; }

Property Value

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.

public bool? Stream { get; set; }

Property Value

bool?