Check if a model type is installed.
(ctx, model_type)
| 243 | @click.argument("model_type") |
| 244 | @click.pass_context |
| 245 | def model_check(ctx, model_type): |
| 246 | """Check if a model type is installed.""" |
| 247 | result = model_mod.check_model_available(model_type) |
| 248 | _output(result, ctx.obj.get("as_json")) |
| 249 | |
| 250 | |
| 251 | # --------------------------------------------------------------------------- |