You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
52 lines
1.7 KiB
Plaintext
Vendored
52 lines
1.7 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 2
|
|
description: Get embeddings 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 embeddings
|
|
Gets the embeddings for the given entries
|
|
|
|
|
|
|
|
`Function GetEmbeddings(Val URL, Val Token, Val Model, Val Text, Val AdditionalParameters = "", Val AdditionalHeaders = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| URL | --url | String | ✔ | Ollama server URL |
|
|
| Token | --token | String | ✔ | OpenAI authorization token |
|
|
| Model | --model | String | ✔ | Models name |
|
|
| Text | --input | Array Of String | ✔ | String or array of request strings |
|
|
| AdditionalParameters | --options | Structure Of KeyAndValue | ✖ | Additional parameters. See GetEmbeddingsParameterStructure |
|
|
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Processing result
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [Create embeddings](https://platform.openai.com/docs/api-reference/embeddings/create)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
URL = "https://api.athenaeum.digital:1122/";
|
|
Token = "sk-or-vv-c5884ebe9f13fb143194bb07ecb...";
|
|
|
|
Text = "What is 1C:Enterprise?";
|
|
Model = "text-embedding-ada-002";
|
|
|
|
Result = OPI_OpenAI.GetEmbeddings(URL, Token, Model, Text);
|
|
```
|
|
|
|
|
|
|
|
|
|
|