Skip to main content
firectl list models [flags]

Examples

# List all models
firectl list models

# Search by name (partial match)
firectl list models --search cognition

# Filter by kind
firectl list models --kind HF_PEFT_ADDON

# Filter by state
firectl list models --state READY

# Combine filters
firectl list models --search cognition --kind HF_PEFT_ADDON

# Use raw filter for advanced queries
firectl list models --filter 'create_time > timestamp("2025-01-01T00:00:00Z")'

Flags

  -h, --help            help for models
      --kind string     Filter by model kind (e.g., HF_PEFT_ADDON, HF_BASE_MODEL, DRAFT_ADDON)
      --search string   Filter models by name (searches both model_id and display_name)
      --state string    Filter by state (e.g., READY, UPLOADING)

Global flags

  -a, --account-id string   The Fireworks account ID. If not specified, reads account_id from ~/.fireworks/auth.ini.
      --api-key string      An API key used to authenticate with Fireworks.
      --filter string       Only resources satisfying the provided filter will be listed. See https://google.aip.dev/160 for the filter grammar.
      --no-paginate         List all resources without pagination.
      --order-by string     A list of fields to order by. To specify a descending order for a field, append a " desc" suffix
      --page-size int32     The maximum number of resources to list.
      --page-token string   The page to list. A number from 0 to the total number of pages (number of entities / page size).
  -p, --profile string      fireworks auth and settings profile to use.