Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cartesia.ai/llms.txt

Use this file to discover all available pages before exploring further.

For deployments without internet connectivity to Cartesia’s licensing servers, you can run in air-gapped mode. This mode uses an offline license file instead of real-time authentication.
Download your offline license file from the on-prem portal. See Provisioned Resources for details.

Configuration

# In your .tfvars file
authenticate               = false
license_proxy_persistence  = true   # Required for air-gapped mode

Loading a License

In air-gapped mode, the /license endpoint is exposed for license management.

Via Port-Forward

kubectl port-forward svc/cartesia-license-proxy 8080:8080 -n cartesia
In another terminal:
curl -X POST http://localhost:8080/license -d '<license-json>'

Via Ingress

If ingress is enabled:
curl -X POST https://<your-domain>/license -d '<license-json>'

Retrieving Audit Logs

The /audit endpoint is available in air-gapped mode for retrieving usage audit logs:
curl -X GET https://<your-domain>/audit --output audits.tar
These audit logs contain usage metadata for billing reconciliation. No transcript data is included, which you can validate by looking at the contents of the output.