Skip to main content

When To Use This

Use tm billing pricing serverless list when you have Control Plane access for the current Tensormesh environment and need to discover published serverless model names. Use the returned pricing[].model value as the --model input for tm infer chat --surface serverless, the SDK, or raw HTTP requests. Example response shape:
pricing:
  - name: MiniMaxAI/MiniMax-M2.5
    model: MiniMaxAI/MiniMax-M2.5
    isActive: true
Use model when sending inference requests. id is the pricing-record id, and name is display-oriented.

Usage

tm billing pricing serverless list [OPTIONS]

Examples

List published serverless pricing records.

tm billing pricing serverless list

Inspect only active pricing records and copy pricing[].model from structured output.

tm --output json billing pricing serverless list --active-only

Filter the pricing list to one known serverless model name.

tm billing pricing serverless list --model MiniMaxAI/MiniMax-M2.5

Options

NameTypeRequiredDefaultDetails
--modeltextnoFilter by model name.
--active-onlybooleannofalseReturn active pricing only. Boolean flag.
--timeoutfloatnoHTTP timeout in seconds.

Inherited Global Options

NameTypeRequiredDefaultDetails
--version, -VbooleannofalseShow the version and exit. Boolean flag.
--configpathno"~/.config/tensormesh/config.toml"Path to config TOML file
--output`choice[textjsonyamlrawtable]`no"text"Output format (text is human-readable; json is machine-friendly).
--quietbooleannofalseSuppress non-essential output. Boolean flag.
--debugbooleannofalsePrint debug logs to stderr (secrets redacted). Boolean flag.
--ca-bundlepathnoPath to a PEM CA bundle for TLS verification (overrides TENSORMESH_CA_BUNDLE).
--max-retriesintegernoMax retries for idempotent HTTP requests on transient errors (overrides TENSORMESH_MAX_RETRIES; subcommands may override).
--controlplane-basetextnoOverride the Control Plane base URL.
--gateway-providertextnoInference Gateway provider for built-in host selection (nebius, lambda, yotta).

Prerequisites

  • Run tm auth login first, or otherwise provide Control Plane auth for the same Tensormesh environment you want to inspect.

Caveats

  • This command lists pricing records for the current Tensormesh Control Plane environment. If you are targeting a different serverless host override, confirm the model name for that host separately.

Parent Command