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

# Eval sets

> The eval_set type is a named collection of test cases used to organise evaluation work.

export const EditionBadge = ({edition}) => <Tooltip tip={edition === "ee" ? "Requires an Enterprise Edition license." : "Available in the Community Edition."}>
    <span style={{
  fontFamily: "RobotoMono, monospace",
  fontSize: "12px",
  textTransform: "uppercase",
  letterSpacing: "0.04em",
  border: "1px solid var(--imp-hair-light)",
  padding: "2px 8px"
}}>
      {edition === "ee" ? "Enterprise" : "Community"}
    </span>
  </Tooltip>;

<EditionBadge edition="ee" /> Eval sets require an Enterprise Edition license (`evals` entitlement).

An `eval_set` groups related `test_case` records and is referenced by `eval_run` configurations. See [Evals overview](/building/evals/overview).

```graphql theme={null}
type eval_set {
  name: String!
  description: String
  last_processed_at: Date
  embeddings_updated_at: Date
  createdAt: Date
  updatedAt: Date
  id: ID!
}
```

## Field notes

| Field                   | Notes                                                            |
| ----------------------- | ---------------------------------------------------------------- |
| `last_processed_at`     | Timestamp of the last knowledge-embedding pass over this record. |
| `embeddings_updated_at` | Timestamp when vector embeddings were last regenerated.          |

## Example query

```graphql theme={null}
query {
  eval_setsPagination(
    limit: 10
    sort: { field: "name", direction: ASC }
  ) {
    items {
      id
      name
      description
      createdAt
    }
    pageInfo {
      currentPage
      hasNextPage
    }
  }
}
```
