jev_verify
Check up to 100 claims against a single evidence block, returning supported, contradicted, or not_addressed with calibrated confidence for each claim. Use it to validate factual assertions before communicating or writing them.
Instructions
Check each of up to 100 claims against one block of evidence, and get supported / contradicted / not_addressed per claim with a calibrated confidence.
Use it before you assert something to the user or write it into a file: verify your draft's factual claims against the source you actually read, or check a summary against the document it summarises.
The rubric is strictly literal and closed-world: a claim counts as supported only if the evidence states or directly entails it. A claim that is true in the world but absent from the evidence comes back not_addressed, which is the answer you want when you are checking for unsupported assertions.
Claims should be single, self-contained statements — split compound sentences, and resolve pronouns before sending. Evidence should be the passage you want to hold the claims to, nothing more.
all_supported is true only when every claim is supported AND the model was confident about each one; treat review/escalate gates as claims a human should look at.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| claims | Yes | Self-contained statements to check, one per entry. Split compound claims. | |
| evidence | Yes | The only material the claims are judged against. | |
| thresholds | No | Override the server's configured gating thresholds for this call only. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | The versioned model id that actually answered. | |
| usage | Yes | Token usage. Jev charges for input tokens only. | |
| claims | Yes | One result per input claim, in input order. | |
| summary | Yes | Counts across all claims. | |
| latency_ms | Yes | Wall-clock time for the underlying API call(s), including retries. | |
| thresholds | Yes | ||
| all_supported | Yes | True only if every claim is `supported` and every gate is `auto`. |