Push BLOB
Sends binary data to the Ollama server
- Parameters
- Advanced call ?
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
| Parameter | Description |
|---|---|
| proxy | InternetProxy or a structure with fields Protocol, Host, Port, User, Password, UseOSAuthentication |
| timeout | Request execution timeout |
| adv_response | Formats the response as a complete structure with fields code, body, and headers |
tip
Method at API documentation: Push a Blob
Parameters with Binary data type can also accept file paths on disk and URLs
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
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint ollama PushBlob \
--url "https://hut.openintegrations.dev/ollama" \
--data "/tmp/yufr4pjr.cvn" \
--headers "{'Authorization':'***'}"
:: JSON data can also be passed as a path to a .json file
oint ollama PushBlob ^
--url "https://hut.openintegrations.dev/ollama" ^
--data "/tmp/yufr4pjr.cvn" ^
--headers "{'Authorization':'***'}"
Result
{
"status_code": 201,
"digest": "ec7a903f1757ef0d61f15810c363f100630a536c955ffdd19691b5b5d474dfaf"
}