Check BLOB
Checks the existence of a BLOB by its SHA256 digest
Function CheckBlob(Val URL, Val SHA256, Val AdditionalHeaders = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | Ollama server URL |
SHA256 | --digest | String | ✔ | SHA256 BLOB digest |
AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
tip
Method at API documentation: Check if a Blob Exist
1C:Enterprise/OneScript code example
URL = "https://api.athenaeum.digital/ollama";
Token = "10KO-82..."; // Authorization - not part API Ollama
SHA256 = "25a79d3e35f356931a7308eb6624b5eeb1d9f5f309ab2dfd2c61de2ee0fa6ee5";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.CheckBlob(URL, SHA256, AdditionalHeaders);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint ollama CheckBlob \
--url "https://api.athenaeum.digital/ollama" \
--digest "yoyoyo" \
--headers "{'Authorization':'***'}"
:: JSON data can also be passed as a path to a .json file
oint ollama CheckBlob ^
--url "https://api.athenaeum.digital/ollama" ^
--digest "yoyoyo" ^
--headers "{'Authorization':'***'}"
Result
{
"status_code": 200
}