v1

latestOpenAPI 3.0.32026-07-2659199427.5 KB
Manage models

Get a model

Get the details about a specific model.

get/customers/{CUSTOMER_ID}/ai/models/{MODEL_ID}

Query parameters

metricsboolean

Information about the metrics returned in the response.

Request body

idstring required

The identifier of the model. For:

  • Pre-trained models, the value options are multilinguallm, text-encoder, or clip-encoder.

  • Custom models, the value is the universally unique identified (UUID) that is the primary key for the model.

Response

OK

OR

Example response

{
  "config": {
    "dataset_config": "mlp_ecommerce",
    "trainer_config": "mlp_ecommerce",
    "trainer_config/text_processor_config": "word_en",
    "trainer_config.encoder_config.rnn_names_list": [
      "gru"
    ],
    "trainer_config.encoder_config.rnn_units_list": [
      128
    ],
    "trainer_config.num_epochs": 1,
    "trainer_config.monitor_patience": 8,
    "trainer_config.encoder_config.emb_spdp": 0.3
  }
}