--- sidebar_position: 9 description: Get image description structure and other functions to work with OpenAI 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, OpenAI] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Get image description structure Get image description structure for generation `Function GetImageDescriptionStructure(Val Prompt, Val Count, Val Background = "", Val Size = "", Val AdditionalParameters = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Prompt | --prompt | String | ✔ | Text description of the image for generation | | Count | --amount | Number | ✔ | Number of images to generate | | Background | --bg | String | ✖ | Generation background option: transparent, opaque, auto | | Size | --size | String | ✖ | Size option for generated images | | AdditionalParameters | --options | Structure Of KeyAndValue | ✖ | Additional request parameters, if necessary | Returns: Structure - Fields structure
:::tip The set of fields and their interpretation may vary depending on the model used :::
```bsl title="1C:Enterprise/OneScript code example" ``` ```bash oint openai GetImageDescriptionStructure \ --prompt "Yellow alpaca" \ --amount 1 \ --size "1024x1024" ``` ```batch oint openai GetImageDescriptionStructure ^ --prompt "Yellow alpaca" ^ --amount 1 ^ --size "1024x1024" ```