mt
MTS CoType — это enterprise AI platform from MTS (крупнейший российский оператор телекоммуникаций operator) providing LLM-powered chat completions с OpenAI-compatible API. It offers access to various AI models on Russian cloud infrastructure.
С помощью MTS CoType интеграции в AACFlow можно:
- Chat Completion: Отправить messages to AI models и receive generated responses
This integration — это suitable для organizations requiring AI capabilities on Russian-hosted infrastructure с enterprise-grade support from MTS.
Инструкции по использованию
Интегрируйте MTS CoType в рабочий процесс для AI chat completions. Требуется MTS CoType bearer token from your account at cotype.mts.ru. Messages must be provided as a JSON array с role/content pairs.
Инструменты
mts_cotype_chat
Отправить messages to an AI model
Входные параметры
| Параметр | Тип | Обязательный | Описание |
|---|---|---|---|
bearerToken | string | Да | MTS CoType bearer token |
model | string | Да | AI model name (e.g., gpt-4o-mini) |
messages | string | Да | Messages JSON array (e.g., [{"role":"user","content":"Hello"}]) |
temperature | number | Нет | Temperature (0–2, controls randomness) |
Выходные данные
| Параметр | Тип | Описание |
|---|---|---|
success | boolean | API success status |
result | string | AI response text |
error | string | Error message if any |
Ссылки
- Official API: https://cotype.mts.ru/
- AACFlow block source: apps/aacflow/blocks/blocks/mts_cotype.ts

