Skip to main content

Push model

Uploads the model to the model library

Function PushModel(Val URL, Val Model, Val Insecure = False, Val AdditionalHeaders = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringOllama server URL
Model--modelStringModels name
Insecure--insecureBooleanAllows an unsecured connection to the library
AdditionalHeaders--headersMap Of KeyAndValueAdditional request headers, if necessary

Returns: Map Of KeyAndValue - Processing result


tip

Method at API documentation: Push a Model

The model name must follow the format <namespace>/<model>:<tag>
Registration on ollama.ai and adding a public key is required.


1C:Enterprise/OneScript code example
    URL   = "https://api.athenaeum.digital/ollama";
Token = "10KO-82..."; // Authorization - not part API Ollama

Model = "bayselonarrend/tinyllama:latest";

AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));

Result = OPI_Ollama.PushModel(URL, Model, , AdditionalHeaders);
Result
{
"status": "success"
}