GET
/
customers
/
{CUSTOMER_ID}
/
ai
/
models
/
{MODEL_ID}
GET ModelId
curl --request GET \
  --url https:/api.lucidworks.com/customers/{CUSTOMER_ID}/ai/models/{MODEL_ID} \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "id": "<string>",
  "modelType": "<string>",
  "description": "<string>",
  "state": "<string>"
}

Path Parameters

CUSTOMER_ID
string
required

Unique identifier derived from confidential client information.

MODEL_ID
string
required

Unique identifier for the model.

Query Parameters

metrics
boolean

Information about the metrics returned in the response.

Body

application/json
id
string
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

200 - application/json

OK

id
string

The identifier of the model. The value options are multilinguallm, text-encoder, or clip-encoder.

modelType
string

The name of the modelType. The value is the same as the id value. The value options are multilinguallm, text-encoder, or clip-encoder.

description
string

The description of the model.

state
string

This field specifies the current status of the model. The only value is AVAILABLE. The model was successfully trained and is ready to be deployed.