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-message-structure.mdx
Vitaly the Alpaca (bot) 687a2dd281 Main build (Jenkins)
2025-06-08 20:09:09 +03:00

39 lines
1.0 KiB
Plaintext
Vendored

---
sidebar_position: 4
description: Get message 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 message structure
Receives the message structure for the request message list
`Function GetMessageStructure(Val Role, Val Text, Val Name = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Role | --role | String | ✔ | Message source: system, user, developer |
| Text | --text | String | ✔ | Message text |
| Name | --name | String | ✖ | Name of participant in conversation |
Returns: Structure Of KeyAndValue - Fields structure
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_OpenAI.GetMessageStructure("user", "What is 1C:Enterprise?");
```