[ML] Removing unused include_model_definition type (#204420)

`include_model_definition` has been deprecated in favor of
`include=definition`
Although `include_model_definition` was included in the type for the
client side `getTrainedModels`, the argument was not part of the
endpoint schema and would have caused an error if used.
In the future if we need this adding to the endpoint it can be added
then.
This commit is contained in:
James Gowdy 2024-12-17 11:47:53 +00:00 committed by GitHub
parent 058ff3446c
commit 60f76359a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,6 @@ import type {
export interface InferenceQueryParams {
from?: number;
include_model_definition?: boolean;
size?: number;
tags?: string;
include?: 'total_feature_importance' | 'feature_importance_baseline' | string;