Yes/no with a probability
jev_checkEvaluate text or structured data by asking a yes/no question; get a probability (0–1) and a yes/no/uncertain verdict. Handles multiple labels via separate checks.
Instructions
Ask a yes/no question. Returns the probability that the answer is yes, from 0 to 1, plus a verdict. There is no separate confidence: a value near 0.5 means yes and no are close to equally likely, not that the answer is 'medium'. Use one check per label when several labels may apply at once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes | The content to evaluate. A plain string for text, or an object/array for structured data such as a record, a diff, or a chat log. | |
| no_means | No | What a no means. | |
| question | Yes | The judgment to make. A string, or an object/array when the question has several labelled parts. This is the only instruction Jev sees, so state it in full. | |
| yes_means | No | What a yes means. Sharpens the judgment. | |
| no_at_or_below | No | Probability at or below which the verdict is 'no'. Default 0.3. Between the two the verdict is 'uncertain'. | |
| yes_at_or_above | No | Probability at or above which the verdict is 'yes'. Default 0.7. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| usage | Yes | ||
| verdict | Yes | ||
| latency_ms | Yes | Wall-clock milliseconds for the API round trip, for your own calibration logs. | |
| thresholds | Yes | ||
| probability_yes | Yes |