1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Ollama/Models-management/Create-model.mdx
Vitaly the Alpaca (bot) 17ada3b115 Main build (Jenkins)
2025-07-05 18:56:59 +03:00

84 lines
2.6 KiB
Plaintext
Vendored

---
sidebar_position: 4
description: Create 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';
# Create model
Creates a new model with the specified settings
`Function CreateModel(Val URL, Val Model, Val Settings, Val AdditionalHeaders = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | Ollama server URL |
| Model | --model | String | ✔ | Models name |
| Settings | --settings | Structure Of KeyAndValue | ✔ | Model settings. See GetModelSettingsStructure |
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
Method at API documentation: [Create a Model](https://github.com/ollama/ollama/blob/main/docs/api.md#create-a-model)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://hut.openintegrations.dev/ollama";
Token = "12We34..."; // Authorization - not part API Ollama
Model = "mario";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Settings = New Structure("from,system", "tinyllama", "You are Mario from Super Mario Bros.");
Result = OPI_Ollama.CreateModel(URL, Model, Settings, AdditionalHeaders);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama CreateModel \
--url "https://hut.openintegrations.dev/ollama" \
--model "mario" \
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" \
--headers "{'Authorization':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint ollama CreateModel ^
--url "https://hut.openintegrations.dev/ollama" ^
--model "mario" ^
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"status": "success"
}
```