2025-04-14 10:07:56 +03:00
---
sidebar_position: 1
2025-05-05 11:15:20 +03:00
description: Push 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 10:07:56 +03:00
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Push BLOB
Sends binary data to the Ollama server
`Function PushBlob(Val URL, Val Data, Val AdditionalHeaders = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | Ollama server URL |
| Data | --data | String, BinaryData | ✔ | File data or filepath |
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
Method at API documentation: [Push a Blob](https://github.com/ollama/ollama/blob/main/docs/api.md#push-a-blob)
Parameters with Binary data type can also accept file paths on disk and URLs
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
2025-10-21 11:36:43 +03:00
URL = "https://hut.openintegrations.dev/ollama";
Token = "12We34..."; // Authorization - not part API Ollama
2025-04-14 10:07:56 +03:00
2025-10-21 11:36:43 +03:00
Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
2025-04-14 10:07:56 +03:00
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.PushBlob(URL, Image, AdditionalHeaders);
```
2025-05-01 20:09:27 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
2025-10-07 19:27:04 +03:00
# JSON data can also be passed as a path to a .json file
2025-05-01 20:09:27 +03:00
oint ollama PushBlob \
2025-10-07 19:27:04 +03:00
--url "https://hut.openintegrations.dev/ollama" \
2025-10-15 14:32:00 +03:00
--data "/tmp/s01gyfic.ygz" \
2025-05-21 08:49:49 +03:00
--headers "{'Authorization':'***'}"
2025-05-01 20:09:27 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
2025-10-07 19:27:04 +03:00
:: JSON data can also be passed as a path to a .json file
2025-05-01 20:09:27 +03:00
oint ollama PushBlob ^
2025-10-07 19:27:04 +03:00
--url "https://hut.openintegrations.dev/ollama" ^
2025-10-15 14:32:00 +03:00
--data "/tmp/s01gyfic.ygz" ^
2025-05-21 08:49:49 +03:00
--headers "{'Authorization':'***'}"
2025-05-01 20:09:27 +03:00
```
</TabItem>
</Tabs>
2025-04-14 10:07:56 +03:00
2025-05-01 12:55:47 +03:00
```json title="Result"
{
"status_code": 201,
2025-10-15 14:32:00 +03:00
"digest": "b3a60daba40ee822f8069959a749beb622b8a8a9f5737e3db904d726ca678572"
2025-05-01 12:55:47 +03:00
}
```