Skip to main content

Documentation Index

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

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

The Simplismart CLI provides command-line access to manage model repositories, deployments, and secrets.

Installation

After installing the SDK, the CLI is available as the simplismart command:
pip install simplismart-sdk

Global Options

These options apply to all CLI commands:
simplismart [global options] <command> [subcommand] [options]
OptionDescriptionDefault
--pg-token TOKENPlayground tokenFalls back to SIMPLISMART_PG_TOKEN env var
--base-url URLAPI base URLhttps://api.app.simplismart.ai
--timeout SECONDSRequest timeout300
--trace-id IDOptional trace/correlation IDGenerated per request

Quick Reference

TaskCommand
List model repossimplismart model-repos list
Create model repo (container)simplismart model-repos create-container --name <name> --source-type docker_hub --runtime-gpus 1 --source-secret <SECRET_ID> --registry-path <path> --docker-tag <tag>
Create model repo (private compile)simplismart model-repos create-private-compile --name <name> --source-type huggingface --source-url <path> --model-class <class> --accelerator-type <type> --model-config @model_config.json --optimisation-config @optimisation_config.json --pipeline-config @pipeline_config.json
List deploymentssimplismart deployments list
Create deploymentsimplismart deployments create --model-repo <ID> --org $ORG_ID --gpu-id nvidia-h100 --name <name> --min-pod-replicas 1 --max-pod-replicas 2 --autoscale-config @config.json
Stop deploymentsimplismart deployments stop --deployment-id <ID>
Start deploymentsimplismart deployments start --deployment-id <ID>
Delete deploymentsimplismart deployments delete --deployment-id <ID>
Create secretsimplismart secrets create --org-id $ORG_ID --name <name> --secret-type docker_hub --data @data.json
List secretssimplismart secrets list --org-id $ORG_ID