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/Assistants/Create-assistant.mdx
Vitaly the Alpaca (bot) abbcdf3723 Main build (Jenkins)
2025-09-18 13:55:48 +03:00

86 lines
3.0 KiB
Plaintext
Vendored

---
sidebar_position: 2
description: Create assistant 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';
# Create assistant
Creates an assistant based on the model and instruction
`Function CreateAssistant(Val URL, Val Token, Val Model, Val Name = "", Val Instruction = "", Val AdditionalParameters = "", Val AdditionalHeaders = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | OpenAI server URL |
| Token | --token | String | ✔ | OpenAI authorization token |
| Model | --model | String | ✔ | Models name |
| Name | --name | String | ✖ | Assistant name |
| Instruction | --inst | String | ✖ | System instruction for the assistant |
| AdditionalParameters | --options | Structure Of KeyAndValue | ✖ | Additional request parameters, if necessary |
| AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
Method at API documentation: [Create assistant](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://hut.openintegrations.dev/localai/";
Token = "12We...";
Instruction = "You are a personal math tutor. When asked a question, write and run Python code to answer the question.";
Model = "smolvlm-256m-instruct";
Name = "Math tutor";
Result = OPI_OpenAI.CreateAssistant(URL, Token, Model, Name, Instruction);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint openai CreateAssistant \
--url "https://hut.openintegrations.dev/localai/" \
--token "***" \
--model "smolvlm-256m-instruct" \
--name "Math tutor" \
--inst "You are a personal math tutor. When asked a question, write and run Python code to answer the question."
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint openai CreateAssistant ^
--url "https://hut.openintegrations.dev/localai/" ^
--token "***" ^
--model "smolvlm-256m-instruct" ^
--name "Math tutor" ^
--inst "You are a personal math tutor. When asked a question, write and run Python code to answer the question."
```
</TabItem>
</Tabs>
```json title="Result"
{
"id": "asst_11",
"object": "assistant",
"created": 1757982420,
"model": "smolvlm-256m-instruct",
"name": "Math tutor",
"instructions": "You are a personal math tutor. When asked a question, write and run Python code to answer the question."
}
```