CLI reference
Use the Continuum CLI to create and manage your Continuum deployment.
Usage:
continuum [command]
Commands:
- init: Initialize a Continuum deployment
- secret: Manage inference secrets of a Continuum deployment
- set: Set secrets for a Continuum deployment
continuum init
Initialize a Continuum deployment
Synopsis
Initialize a Continuum deployment.
continuum init [flags]
Options
-e, --endpoint string endpoint the Attestation Service can be reached at
-h, --help help for init
-m, --manifest string path to manifest (.toml) file
Options inherited from parent commands
-l, --log-level string set logging level (debug, info, warn, error, or a number) (default "warn")
continuum key generate
Generate a new user authentication key
Synopsis
Generate a new user authentication key.
continuum key generate [flags]
Options
-h, --help help for generate
-k, --key string path to save generated private key to (default "private.pem")
Options inherited from parent commands
-l, --log-level string set logging level (debug, info, warn, error, or a number) (default "warn")
continuum key digest
Compute the digest of a user authentication key
Synopsis
Compute the digest of a user authentication key.
continuum key digest [flags]
Options
-h, --help help for digest
-k, --key string path to the private key (.pem) to compute the digest of (default "private.pem")
Options inherited from parent commands
-l, --log-level string set logging level (debug, info, warn, error, or a number) (default "warn")
continuum secret
Manage inference secrets of a Continuum deployment
Synopsis
Manage inference secrets of a Continuum deployment. Inference secrets are used to encrypt and decrypt inference requests and responses. This ensures only trusted parties (users or the AI model) can read prompts and responses.
Options
-e, --endpoint string endpoint the Attestation Service can be reached at
-h, --help help for secret
-m, --manifest string path to manifest (.toml) file to use for validation of the Attestation Service
Options inherited from parent commands
-l, --log-level string set logging level (debug, info, warn, error, or a number) (default "warn")
continuum secret set
Set secrets for a Continuum deployment
Synopsis
Set secrets for a Continuum deployment. This operation requires access to a private key matching one of the public key digests in Continuum's effective manifest.
continuum secret set [flags]
Options
-h, --help help for set
-s, --secrets string path to file (.toml) containing the secrets to upload
-t, --ttl duration time-to-live for the secrets. If set to 0, the secrets will not expire
Options inherited from parent commands
-e, --endpoint string endpoint the Attestation Service can be reached at
-l, --log-level string set logging level (debug, info, warn, error, or a number) (default "warn")
-m, --manifest string path to manifest (.toml) file to use for validation of the Attestation Service