ax annotation-configs commands let you create, retrieve, and manage annotation configs on the Arize platform. Annotation configs define structured label schemas for human feedback and data curation.
ax annotation-configs list
List all annotation configs in a space.
| Option | Description |
|---|---|
--space-id | Filter by space ID |
--limit | Maximum number of results to return (default: 15) |
--cursor | Pagination cursor for the next page |
ax annotation-configs get
Retrieve a single annotation config by ID.
ax annotation-configs create
Create a new annotation config. Three types are supported: categorical, continuous, and freeform.
| Option | Description |
|---|---|
--name | Name for the annotation config |
--space-id | Space to create the config in |
--type | Config type: categorical, continuous, or freeform |
--min-score | Minimum score (required for continuous type) |
--max-score | Maximum score (required for continuous type) |
--value | Label for categorical type — repeat for multiple values (e.g. --value good --value bad) |
--optimization-direction | maximize, minimize, or none |
ax annotation-configs delete
Delete an annotation config. This operation is irreversible.
| Option | Description |
|---|---|
--force | Skip the confirmation prompt |