Product Integration

Prev Next

Product integration must be performed for each tenant with the productName before starting the training. Currently, the integration can be achieved with the following products:

Product Method Description Dependencies
CAI Text-Classification CAI employs supervised learning to train data with pre-defined classes and makes inferences to predict the class of new data. Text-Normalization Sentence-Embedding
CA Text-Clustering CA employs unsupervised learning, training data without tags and specifying the number of expected classes. It then makes inferences to predict the class of new data. Text-Normalization Sentence-Embedding
Unifonic Text-Classification / Text-Clustering Product name defined for Unifonic integration. Text-Normalization Sentence-Embedding
productName Text-Classification / Text-Clustering Product name must be defined before integration. To introduce a new product, please contact SESTEK. Text-Normalization Sentence-Embedding


Product Integration

Endpoint:

Deprecation Notice

The following URL for product integration will be deprecated starting January 1, 2025:

{{baseUrl}}/sestekai-api/api/app/product-integrations

Please use the external URL for product integration provided below.


URL:{{baseUrl}}/sestekai-api/api/external/product-integrations
HTTP Method: POST
Content-Type: application/json


The access token acquired for the training must be included in the request header.


Examples

Sample request body:

curl --location '{{baseUrl}}/sestekai-api/api/external/product-integrations' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>' \
--data '{
  "name": "ProductName",
  "isLlmUsed": "true | false"
}'

Expected Response: 204 (Integration Created)