> ## Documentation Index
> Fetch the complete documentation index at: https://docs.calibrate.artpark.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Annotators

> Operations for annotators

## Create annotator

Create an annotator, a human labeller who can be assigned annotation tasks

```bash theme={null}
calibrate annotators create [flags]
```

**Options**

| Option       | Type   | Description                                                |
| ------------ | ------ | ---------------------------------------------------------- |
| `-n, --name` | string | **Required.** Annotator name, unique within your workspace |

**Examples**

```bash theme={null}
calibrate annotators create --name <value>
```

## List annotators

List annotators with job counts and agreement stats

```bash theme={null}
calibrate annotators list [flags]
```

**Examples**

```bash theme={null}
calibrate annotators list
```

## Update annotator

Update an annotator's name

```bash theme={null}
calibrate annotators update [flags]
```

**Options**

| Option                 | Type   | Description                                                               |
| ---------------------- | ------ | ------------------------------------------------------------------------- |
| `-a, --annotator-uuid` | string | **Required.** Annotator to update                                         |
| `-n, --name`           | string | New annotator name, unique within your workspace. Omit to leave unchanged |

**Examples**

```bash theme={null}
calibrate annotators update --annotator-uuid f47ac10b-58cc-4372-a567-0e02b2c3d479
```
