Ask many questions about one state
jev_askAsk multiple independent questions about the same state in a single request, scoring all questions in one forward pass. Cuts cost and latency for document-heavy workloads without changing answers.
Instructions
Ask several independent questions about the same state in ONE request. Jev prefills the state once and scores every question in a single forward pass, so extra questions add almost no latency. Prefer this over repeated single-question calls: on a document-dominated workload it is dramatically cheaper and faster with no change in answers. Questions cannot see each other's answers, so state any speculative premise explicitly and let your own logic decide which answers apply.
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. | |
| act_above | No | Confidence at or above which the answer is marked 'act'. Default 0.8. Calibrate on your own data and the cost of being wrong. | |
| questions | Yes | ||
| review_above | No | Confidence at or above which the answer is marked 'review' rather than 'abstain'. Default 0.5. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | ||
| usage | Yes | ||
| answers | Yes | Keyed by your question ids. Choice and Score answers also carry an 'action' gated on confidence. | |
| none_options | Yes | For each 'classify' question, the key carrying the no-match meaning, or null. |