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

# AI Eval commands - Omni CLI

> Reference for the omni ai-eval command group: manage eval prompt sets and runs.

Manage eval prompt sets and runs used to score AI quality against curated prompt suites. See the [AI API documentation](/api/ai) for more information.

```bash theme={null}
omni ai-eval <command>
```

| Command                 | Description                         |
| ----------------------- | ----------------------------------- |
| `prompt-sets-list`      | List eval prompt sets               |
| `prompt-sets-create`    | Create an eval prompt set           |
| `prompt-sets-get`       | Get an eval prompt set              |
| `prompt-sets-update`    | Update an eval prompt set           |
| `prompt-sets-archive`   | Archive an eval prompt set          |
| `prompt-sets-unarchive` | Restore an archived eval prompt set |
| `runs-list`             | List eval runs                      |
| `runs-create`           | Start an eval run                   |
| `runs-get`              | Get an eval run                     |
| `runs-cancel`           | Cancel an eval run                  |
| `runs-archive`          | Archive an eval run                 |
| `runs-unarchive`        | Restore an archived eval run        |

```bash wrap theme={null}
# Start an eval run against a prompt set
omni ai-eval runs-create --body '{"promptSetId":"<promptSetId>"}'

# View help for prompt-sets-create, including arguments and flag details
omni ai-eval prompt-sets-create --help
```

<Note>
  Every command in this group also accepts the [global flags](/developers/cli/reference/global-flags), including `--token`, `--profile`, `--format`, and `--compact`.
</Note>
