# `Aludel.Evals.Suite`
[🔗](https://github.com/ccarvalho-eng/aludel/blob/main/lib/aludel/evals/suite.ex#L1)

Schema for evaluation test suites.

A suite groups test cases together for a specific prompt, allowing
systematic testing across multiple scenarios.

# `t`

```elixir
@type t() :: %Aludel.Evals.Suite{
  __meta__: term(),
  id: term(),
  inserted_at: term(),
  name: term(),
  project: term(),
  project_id: term(),
  prompt: term(),
  prompt_id: term(),
  suite_runs: term(),
  test_cases: term(),
  updated_at: term()
}
```

# `changeset`

```elixir
@spec changeset(t(), map()) :: Ecto.Changeset.t()
```

Changeset for creating or updating a suite.

Validates that name and prompt_id are present.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
