You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
39 lines
1009 B
Plaintext
Vendored
39 lines
1009 B
Plaintext
Vendored
---
|
|
sidebar_position: 3
|
|
description: Get context 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 context 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"
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|