You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
55 lines
1.2 KiB
Plaintext
Vendored
55 lines
1.2 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 5
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Copy model
|
|
Copies an existing model
|
|
|
|
|
|
|
|
`Function CopyModel(Val URL, Val Model, Val Name, Val AdditionalHeaders = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| URL | --url | String | ✔ | Ollama server URL |
|
|
| Model | --model | String | ✔ | Name of existing model |
|
|
| Name | --name | String | ✔ | The name of the new model |
|
|
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Processing result
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [Copy a Model](https://github.com/ollama/ollama/blob/main/docs/api.md#copy-a-model)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
URL = "https://api.athenaeum.digital/ollama";
|
|
Token = "10KO..."; // Authorization - not part API Ollama
|
|
|
|
Model = "mario";
|
|
Name = "mario2";
|
|
|
|
AdditionalHeaders = New Map;
|
|
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
|
|
|
|
Result = OPI_Ollama.CopyModel(URL, Model, Name, AdditionalHeaders);
|
|
```
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"status_code": 200
|
|
}
|
|
```
|