--- sidebar_position: 7 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Get context parameter structure Gets the structure of additional parameters to process the request in context `Function GetContextParameterStructure(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.GetContextParameterStructure(); ``` ```bash oint ollama GetContextParameterStructure \ --empty true ``` ```batch oint ollama GetContextParameterStructure ^ --empty true ``` ```json title="Result" { "format": "", "options": "", "keep_alive": "", "tools": "" } ```