Noul: yes-probability
Noul asks a yes/no question and returns the probability that the answer is yes (0–1).
Request
Section titled “Request”{ "type": "noul", "instructions": "The customer explicitly requests a refund", "criteria": { "true": "Explicitly mentions a refund, cancellation, or money back", "false": "Complains but asks for nothing" }}criteriais optional, withtrue/falsekeys describing what counts as yes and no- Clearer boundaries make the probability more usable
Answer
Section titled “Answer”{ "type": "noul", "noul": 0.91 }A single field: noul, i.e. P(yes). Noul carries no confidence (official docs, verified 2026-09-22) — a binary question has one degree of freedom; the probability is the whole story.
Official threshold guidance
Section titled “Official threshold guidance”From the official docs (verified 2026-09-22):
| Range | Suggested action |
|---|---|
| ≥ 0.8 | Treat as yes |
| ≤ 0.2 | Treat as no |
| 0.2 – 0.8 | Middle ground — route to human review |
| 0.5 | Theoretical breakpoint when both error costs are equal |
Typical uses
Section titled “Typical uses”- Guardrails: the official cookbook screens every message entering and leaving an LLM app (“is this a jailbreak?”, “any hidden instruction?”) and thresholds the probabilities — see Tool approval
- Ticket triage: binary signals like “asks for a refund” or “needs same-day handling” — see Ticket triage and the runnable site examples (JavaScript / Python)
- Retrieval pre-check: the official cookbook asks one Noul (“does this document contain an answer?”) before selecting among 218 lines of terms of service with a Choice
Pairing advice
Section titled “Pairing advice”Because Noul lacks a confidence signal, our advice is to pair it in the same request with a Choice or Score (both carry confidence) whenever you also need “should this automate?” Back to Capabilities.