1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Ollama/Models-management/Delete-model.mdx
Vitaly the Alpaca (bot) 47fa4e92bb Main build (Jenkins)
2025-06-27 11:47:43 +03:00

79 lines
2.2 KiB
Plaintext
Vendored

---
sidebar_position: 6
description: Delete 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';
# Delete model
Deletes an existing model
`Function DeleteModel(Val URL, Val Model, Val AdditionalHeaders = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | Ollama server URL |
| Model | --model | String | ✔ | Models name |
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
Method at API documentation: [Delete a Model](https://github.com/ollama/ollama/blob/main/docs/api.md#delete-a-model)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = FunctionParameters["Ollama_URL"];
Token = FunctionParameters["Ollama_Token"]; // Authorization - not part API Ollama
Model = "mario";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.DeleteModel(URL, Model, AdditionalHeaders);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint ollama DeleteModel \
--url "https://api.athenaeum.digital/ollama" \
--model "bayselonarrend/tinyllama:latest" \
--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 DeleteModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "bayselonarrend/tinyllama:latest" ^
--headers "{'Authorization':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"status_code": 200
}
```