You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
|
|
---
|
||
|
|
sidebar_position: 1
|
||
|
|
description: Get model list 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 model list
|
||
|
|
Receives a list of available models
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
`Function GetModelList(Val URL, Val Token, Val AdditionalHeaders = "") Export`
|
||
|
|
|
||
|
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|
|-|-|-|-|-|
|
||
|
|
| URL | --url | String | ✔ | OpenAI server URL |
|
||
|
|
| Token | --token | String | ✔ | OpenAI authorization token |
|
||
|
|
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
|
||
|
|
|
||
|
|
|
||
|
|
Returns: Map Of KeyAndValue - Processing result
|
||
|
|
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
:::tip
|
||
|
|
Method at API documentation: [List models](https://platform.openai.com/docs/api-reference/models/list)
|
||
|
|
:::
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
|
URL = "https://api.athenaeum.digital:1122/";
|
||
|
|
Token = "sk-or-vv-c5884ebe9f13fb143194bb07ecb...";
|
||
|
|
|
||
|
|
Result = OPI_OpenAI.GetModelList(URL, Token);
|
||
|
|
```
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|