1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/md/Ollama/Models-management/Pull-model.mdx
Vitaly the Alpaca (bot) abbcdf3723 Main build (Jenkins)
2025-09-18 13:55:48 +03:00

75 lines
2.2 KiB
Plaintext
Vendored

---
sidebar_position: 10
description: Pull 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';
# Pull model
Downloads a model from the library
`Function PullModel(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
<br/>
:::tip
Method at API documentation: [Pull a Model](https://github.com/ollama/ollama/blob/main/docs/api.md#pull-a-model)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://hut.openintegrations.dev/ollama";
Token = "12We34..."; // Authorization - not part API Ollama
Model = "tinyllama";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.PullModel(URL, Model, , AdditionalHeaders);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint ollama PullModel \
--url ""https://hut.openintegrations.dev/ollama"" \
--model ""bayselonarrend/tinyllama:latest"" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint ollama PullModel ^
--url ""https://hut.openintegrations.dev/ollama"" ^
--model ""bayselonarrend/tinyllama:latest"" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"status": "success"
}
```