--- sidebar_position: 7 description: Load model to memory 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'; # Load model to memory Loads the selected model into RAM `Function LoadModelToMemory(Val URL, Val Model, Val Period = 300, Val AdditionalHeaders = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | URL | --url | String | ✔ | Ollama server URL | | Model | --model | String | ✔ | Models name | | Period | --keep | Number | ✖ | Model hold time in seconds | | AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary | Returns: Map Of KeyAndValue - Processing result
:::tip Method at API documentation: [Load a model](https://github.com/ollama/ollama/blob/main/docs/api.md#load-a-model) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://hut.openintegrations.dev/ollama"; Token = "12We34..."; // Authorization - not part API Ollama Model = "tinyllama"; Period = 500; AdditionalHeaders = New Map; AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token)); Result = OPI_Ollama.LoadModelToMemory(URL, Model, Period, AdditionalHeaders); ``` ```bash # JSON data can also be passed as a path to a .json file oint ollama LoadModelToMemory \ --url "https://hut.openintegrations.dev/ollama" \ --model "tinyllama" \ --keep 500 \ --headers "{'Authorization':'***'}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint ollama LoadModelToMemory ^ --url "https://hut.openintegrations.dev/ollama" ^ --model "tinyllama" ^ --keep 500 ^ --headers "{'Authorization':'***'}" ``` ```json title="Result" { "model": "tinyllama", "created_at": "2025-10-15T11:02:28.817227663Z", "response": "", "done": true, "done_reason": "load" } ```