# AcceptancePolicy

Defined in: [src/policy.ts:10](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L10)

When does a model answer count as decided?

These are application thresholds, not universal defaults. Noul reports a yes-probability; Choice and Score report a distribution-derived confidence. The two are not interchangeable, so they get separate knobs.

## Properties

| Property               | Modifier   | Type     | Description                                                  | Defined in                                                                                                                   |
| ---------------------- | ---------- | -------- | ------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
| []()`noul`             | `readonly` | `object` | -                                                            | [src/policy.ts:11](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L11) |
| `noul.yesAbove`        | `readonly` | `number` | Accept “yes” when P(yes) is at least this.                   | [src/policy.ts:13](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L13) |
| `noul.noBelow`         | `readonly` | `number` | Accept “no” when P(yes) is at most this.                     | [src/policy.ts:15](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L15) |
| []()`choice`           | `readonly` | `object` | -                                                            | [src/policy.ts:17](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L17) |
| `choice.minConfidence` | `readonly` | `number` | Accept the selected option when confidence is at least this. | [src/policy.ts:19](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L19) |
| []()`score`            | `readonly` | `object` | -                                                            | [src/policy.ts:21](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L21) |
| `score.minConfidence`  | `readonly` | `number` | Accept a score when confidence is at least this.             | [src/policy.ts:23](https://github.com/jacobgoldfarb/Jevlish/blob/83ccd8c0be5f41962c805f7d42ddf1b1f048de89/src/policy.ts#L23) |