---
sidebar_position: 6
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get embeddings parameter structure
Gets the structure of additional parameters for processing embeddings requests
`Function GetEmbeddingsParameterStructure(Val Clear = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Clear | --empty | Boolean | ✖ | True > structure with empty valuse, False > field descriptions at values |
Returns: Structure Of KeyAndValue - Fields structure
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Ollama.GetEmbeddingsParameterStructure();
```
```bash
oint ollama GetEmbeddingsParameterStructure \
--empty true
```
```batch
oint ollama GetEmbeddingsParameterStructure ^
--empty true
```
```json title="Result"
{
"options": "",
"keep_alive": "",
"truncate": ""
}
```