You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
89 lines
2.8 KiB
Plaintext
Vendored
89 lines
2.8 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 2
|
|
description: Upload file 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';
|
|
|
|
# Upload file
|
|
Uploads a file for further use in other requests
|
|
|
|
|
|
|
|
`Function UploadFile(Val URL, Val Token, Val FileName, Val Data, Val Destination, Val AdditionalHeaders = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| URL | --url | String | ✔ | OpenAI server URL |
|
|
| Token | --token | String | ✔ | OpenAI authorization token |
|
|
| FileName | --name | String | ✔ | File name with extension |
|
|
| Data | --data | String, BinaryData | ✔ | Path to file or data |
|
|
| Destination | --purpose | String | ✔ | File purpose: assistants, batch, vision, user_data, evals |
|
|
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Processing result
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [Upload file](https://platform.openai.com/docs/api-reference/files/create)
|
|
|
|
Parameters with Binary data type can also accept file paths on disk and URLs
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
URL = "https://hut.openintegrations.dev/localai/";
|
|
Token = "12We...";
|
|
|
|
File = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
|
|
|
FileName = StrTemplate("%1.png", String(New UUID()));
|
|
Destination = "assistants";
|
|
|
|
Result = OPI_OpenAI.UploadFile(URL, Token, FileName, File, Destination);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint openai UploadFile \
|
|
--url "https://hut.openintegrations.dev/localai/" \
|
|
--token "***" \
|
|
--name "6895aeff-efc1-4607-80ea-384e6676aaad.png" \
|
|
--data "https://hut.openintegrations.dev/test_data/picture.jpg" \
|
|
--purpose "assistants"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint openai UploadFile ^
|
|
--url "https://hut.openintegrations.dev/localai/" ^
|
|
--token "***" ^
|
|
--name "6895aeff-efc1-4607-80ea-384e6676aaad.png" ^
|
|
--data "https://hut.openintegrations.dev/test_data/picture.jpg" ^
|
|
--purpose "assistants"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"id": "file-20",
|
|
"object": "file",
|
|
"bytes": 2114025,
|
|
"created_at": "2025-06-16T18:34:16.153579044Z",
|
|
"filename": "8c0197c7-42d8-4ee6-9918-33d113e6414f.png",
|
|
"purpose": "assistants"
|
|
}
|
|
```
|