2025-04-14 22:23:29 +03:00
---
sidebar_position: 2
2025-05-05 11:15:20 +03:00
description: Check BLOB and other functions to work with Ollama in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Ollama]
2025-04-14 22:23:29 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# 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
<br/>
:::tip
2025-07-30 09:26:24 +03:00
Method at API documentation: [Check if a Blob Exists](https://github.com/ollama/ollama/blob/main/docs/api.md#check-if-a-blob-exists)
2025-04-14 22:23:29 +03:00
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
URL = "https://hut.openintegrations.dev/ollama";
Token = "12We34..."; // Authorization - not part API Ollama
2025-09-12 16:37:40 +03:00
SHA256 = "6d58651f7e4668b78b6ba43ee117e07d6d9be5557d6e8ba611ef09c78990f572";
2025-04-14 22:23:29 +03:00
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.CheckBlob(URL, SHA256, AdditionalHeaders);
```
2025-05-01 20:09:27 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama CheckBlob \
2025-07-05 18:56:59 +03:00
--url "https://hut.openintegrations.dev/ollama" \
2025-05-01 20:09:27 +03:00
--digest "yoyoyo" \
2025-05-21 10:35:46 +03:00
--headers "{'Authorization':'***'}"
2025-05-01 20:09:27 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama CheckBlob ^
2025-07-05 18:56:59 +03:00
--url "https://hut.openintegrations.dev/ollama" ^
2025-05-01 20:09:27 +03:00
--digest "yoyoyo" ^
2025-05-21 10:35:46 +03:00
--headers "{'Authorization':'***'}"
2025-05-01 20:09:27 +03:00
```
</TabItem>
</Tabs>
2025-04-14 22:23:29 +03:00
2025-05-01 12:55:47 +03:00
```json title="Result"
{
"status_code": 200
}
```