1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/OpenAI/Requests-processing/Get-image-description-structure.mdx
Vitaly the Alpaca (bot) 687a2dd281 Main build (Jenkins)
2025-06-08 20:09:09 +03:00

45 lines
1.4 KiB
Plaintext
Vendored

---
sidebar_position: 6
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 = "auto", Val Size = "auto", 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
<br/>
:::tip
The set of fields and their interpretation may vary depending on the model used
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
```