Yes/no with a probability
jev_checkAsk a yes/no question about text or structured data and receive a probability from 0 to 1 with a yes/no/uncertain verdict for clear programmatic decisions.
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 | ||
| thresholds | Yes | ||
| probability_yes | Yes |