--- sidebar_position: 1 description: Get model list 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'; # Get model list Gets a list of local models `Function GetModelList(Val URL, Val AdditionalHeaders = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | URL | --url | String | ✔ | Ollama server URL | | AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary | Returns: Map Of KeyAndValue - Processing result
:::tip Method at API documentation: [List Local Models](https://github.com/ollama/ollama/blob/main/docs/api.md#list-local-models) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://hut.openintegrations.dev/ollama"; Token = "12We34..."; // Authorization - not part API Ollama AdditionalHeaders = New Map; AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token)); Result = OPI_Ollama.GetModelList(URL, AdditionalHeaders); ``` ```bash # JSON data can also be passed as a path to a .json file oint ollama GetModelList \ --url "https://hut.openintegrations.dev/ollama" \ --headers "{'Authorization':'***'}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint ollama GetModelList ^ --url "https://hut.openintegrations.dev/ollama" ^ --headers "{'Authorization':'***'}" ``` ```json title="Result" { "models": [ { "name": "mario:latest", "model": "mario:latest", "modified_at": "2025-10-31T12:29:13.333669475Z", "size": 637700145, "digest": "83472d32997e219d78e3e480763e7b72beca170aaa02f3f2e2dbf613c248dee4", "details": { "parent_model": "", "format": "gguf", "family": "llama", "families": [ "llama" ], "parameter_size": "1.1B", "quantization_level": "Q4_0" } }, { "name": "bayselonarrend/tinyllama:latest", "model": "bayselonarrend/tinyllama:latest", "modified_at": "2025-10-31T12:29:11.721601908Z", "size": 637700138, "digest": "2644915ede352ea7bdfaff0bfac0be74c719d5d5202acb63a6fb095b52f394a4", "details": { "parent_model": "", "format": "gguf", "family": "llama", "families": [ "llama" ], "parameter_size": "1B", "quantization_level": "Q4_0" } }, { "name": "tinyllama:latest", "model": "tinyllama:latest", "modified_at": "2025-10-31T12:29:10.701559154Z", "size": 637700138, "digest": "2644915ede352ea7bdfaff0bfac0be74c719d5d5202acb63a6fb095b52f394a4", "details": { "parent_model": "", "format": "gguf", "family": "llama", "families": [ "llama" ], "parameter_size": "1B", "quantization_level": "Q4_0" } } ] } ```