AcceptancePolicy
Defined in: src/policy.ts:10
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
Section titled “Properties”| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
noul |
readonly |
object |
- | src/policy.ts:11 |
noul.yesAbove |
readonly |
number |
Accept “yes” when P(yes) is at least this. | src/policy.ts:13 |
noul.noBelow |
readonly |
number |
Accept “no” when P(yes) is at most this. | src/policy.ts:15 |
choice |
readonly |
object |
- | src/policy.ts:17 |
choice.minConfidence |
readonly |
number |
Accept the selected option when confidence is at least this. | src/policy.ts:19 |
score |
readonly |
object |
- | src/policy.ts:21 |
score.minConfidence |
readonly |
number |
Accept a score when confidence is at least this. | src/policy.ts:23 |