Pull model
Downloads a model from the library
Function PullModel(Val URL, Val Model, Val Insecure = False, Val AdditionalHeaders = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | Ollama server URL |
Model | --model | String | ✔ | Models name |
Insecure | --insecure | Boolean | ✖ | Allows an unsecured connection to the library |
AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
tip
Method at API documentation: Pull a Model
1C:Enterprise/OneScript code example
URL = "https://api.athenaeum.digital/ollama";
Token = "10KO-82..."; // Authorization - not part API Ollama
Model = "tinyllama";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.PullModel(URL, Model, , AdditionalHeaders);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint ollama PullModel \
--url "https://api.athenaeum.digital/ollama" \
--model "bayselonarrend/tinyllama:latest" \
--headers "{'Authorization':'Bearer ***'}"
:: JSON data can also be passed as a path to a .json file
oint ollama PullModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'Bearer ***'}"
Result
{
"status": "success"
}