modzyClient.getAllModels
Get all models
modzyclient.getAllModels()
Returns a list of all deployed models. The list includes each model’s modelId, versions, and latestVersion.
Returns
List<com.modzy.sdk.model.Model> A list of models with the identifiers and versions populated.
Example
List<Model> models = modzyClient.getAllModels();
System.out.println("All models "+models.lenght());
Updated almost 2 years ago
