Publishing models

By default, a model you create and deploy can only be queried by an API key associate with your account. You can also designate your model as public, which allows it to be queried using any API key.

Making your models public

To let your model be publicly accessible, pass the --public flag when creating the model.

You can also update an existing model to be public.

firectl update model <model-id> --public

NOTE: The model must be undeployed before changing your models publicity.

Making your models private

New models are created private by default. If you want to turn a public model back to private, run:

firectl update model <model-id> --public false