API generation

This commit is contained in:
delvedor
2021-03-01 10:36:52 +01:00
parent 2ebe2d8b7f
commit 0e2ae5452d
5 changed files with 73 additions and 0 deletions

View File

@ -1533,6 +1533,11 @@ export interface MlDeleteTrainedModel extends Generic {
model_id: string;
}
export interface MlDeleteTrainedModelAlias extends Generic {
model_alias: string;
model_id: string;
}
export interface MlEstimateModelMemory<T = RequestBody> extends Generic {
body: T;
}