---
sidebar_position: 9
description: Push model 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 model
Uploads the model to the model library
`Function PushModel(Val URL, Val Model, Val Insecure = False, Val AdditionalHeaders = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | Ollama server URL |
| Model | --model | String | ✔ | Models name |
| Insecure | --insecure | Boolean | ✖ | Allows an unsecured connection to the library |
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
:::tip
Method at API documentation: [Push a Model](https://github.com/ollama/ollama/blob/main/docs/api.md#push-a-model)
The model name must follow the format <namespace>/<model>:<tag>
Registration on ollama.ai and adding a public key is required.
:::
```bsl title="1C:Enterprise/OneScript code example"
URL = FunctionParameters["Ollama_URL"];
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
Model = "bayselonarrend/tinyllama:latest";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.PushModel(URL, Model, , AdditionalHeaders);
```
```bash
# JSON data can also be passed as a path to a .json file
oint ollama PushModel \
--url "https://api.athenaeum.digital/ollama" \
--model "bayselonarrend/tinyllama:latest" \
--headers "{'Authorization':'***'}"
```
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama PushModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'***'}"
```
```json title="Result"
{
"status": "success"
}
```