--- sidebar_position: 1 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 keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Ollama] --- 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
:::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 :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://hut.openintegrations.dev/ollama"; Token = "12We34..."; // Authorization - not part API Ollama Image = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data AdditionalHeaders = New Map; AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token)); Result = OPI_Ollama.PushBlob(URL, Image, AdditionalHeaders); ``` ```bash # JSON data can also be passed as a path to a .json file oint ollama PushBlob \ --url "https://hut.openintegrations.dev/ollama" \ --data "/tmp/em0pzhgb.x34" \ --headers "{'Authorization':'***'}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint ollama PushBlob ^ --url "https://hut.openintegrations.dev/ollama" ^ --data "/tmp/em0pzhgb.x34" ^ --headers "{'Authorization':'***'}" ``` ```json title="Result" { "status_code": 201, "digest": "e039edc58c072212e3096db70e28d082ca3587ccb11db92b3b4b11f4dac79a1a" } ```