CLI Reference
deployments
Deployment management commands
$
limai deployments <subcommand>List, create, configure, and inspect deployments within a project.
Options
--jsonOutput raw JSON--verboseEnable debug loggingSubcommands
limai deployments list <projectId>
List all deployments for a project.
$
limai deployments list <projectId>List deployments for a project.
Options
--status <status>Filter by deployment status--type <type>Filter by deployment typelimai deployments create <projectId>
Create a new deployment.
$
limai deployments create <projectId>Create a new deployment in a project.
Options
--name <name>Deployment name (required)--type <type>Deployment type (required)--tables-file <file>JSON file with tables configurationlimai deployments config <deploymentId>
Get the configuration of a deployment.
limai deployments config <deploymentId>limai deployments update <deploymentId>
Update deployment configuration from a JSON file.
$
limai deployments update <deploymentId>Update deployment configuration.
Options
--body <file>JSON file with configuration updates (required)limai deployments documents <deploymentId>
List documents uploaded to a deployment.
$
limai deployments documents <deploymentId>List documents in a deployment.
Options
--limit <n>Max results(default: 50)--offset <n>Offset for pagination(default: 0)--status <status>Filter by document statusExamples
List all deployments
limai deployments list proj_abc123Create a deployment with tables
limai deployments create proj_abc123 --name "Invoice Extraction" --type MODEL --tables-file tables.jsonView deployment config as JSON
limai deployments config dep_xyz789 --jsonUpdate deployment configuration
limai deployments update dep_xyz789 --body config-updates.jsonList processed documents
limai deployments documents dep_xyz789 --status COMPLETED --limit 100