Skip to content

Commit

Permalink
feat(modellisting): add new property requiresAssociation (#884)
Browse files Browse the repository at this point in the history
feat(modellisting): add new property requiresAssociation on listing model
  • Loading branch information
lprovost-coveo authored Nov 12, 2024
1 parent fd8fa58 commit 2841108
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ export interface MLListingModel {
* @Example `5`
*/
modelSizeStatistic: number;

/**
* @deprecated
* This property is exposed for backward compatibility reasons.
*/
readyForAssociation: boolean;
/**
* The current status of the model
Expand All @@ -46,6 +51,10 @@ export interface MLListingModel {
*
*/
modelAssociations: MLModelAssociation[];
/**
* Specifies whether the model must be associated with a query pipeline to be effective.
*/
requiresAssociation: boolean;
}

export interface MLModelStatusInfo {
Expand Down

0 comments on commit 2841108

Please sign in to comment.