fast_verify
Verify whether a claim is true by evaluating it against provided evidence, returning a calibrated probability and assessment. Use to confirm task completion, validate outputs, or detect loops.
Instructions
Check whether a condition is true or a task goal has been met.
Returns the probability (0-1) that the statement is true given the evidence. Call this to verify goal completion, test outputs, status checks, and loop detection.
Args: statement: The yes/no claim to verify against evidence. evidence: The output, log, or evidence to evaluate. yes_means: Optional clarification of what 'yes' / true means. no_means: Optional clarification of what 'no' / false means.
Returns: JSON object with 'probability', 'is_true', and 'assessment'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| evidence | Yes | ||
| no_means | No | ||
| statement | Yes | ||
| yes_means | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |