getModel abstract method

  1. @Get(path: "/v1/models/{model_id}")
Future<Response<Model>> getModel({
  1. @Path("model_id") required String modelId,
})

Retrieves a model instance, providing basic information about the model such as the owner and permissioning.

Implementation

@Get(path: "/v1/models/{model_id}")
Future<Response<Model>> getModel({
  @Path("model_id") required String modelId,
});