Ask Jev (batch)
jev_askSend a shared context with multiple independent questions to Jev and get typed judgments (choice, score, yes/no) with probabilities, instead of prose.
Instructions
Send one shared context and one or more independent questions to Jev (TypeSafe System One) and get typed judgments back — not prose.
How to design the call:
statecarries the text and facts;instructionscarries the judgment, in the question's own words.Every question is answered independently against the same state. Order is not a sequence, and no question can use another's answer. Ask independent questions together in one call, including conditional ones whose answers you may ignore; make a second call only when an answer decides what to fetch or ask next.
Prefer
choicefor a category,scorefor an ordered scale, andnoulfor a yes/no judgment. Use separate noul questions when several labels can apply at once, since a choice returns exactly one option.
Reading the result: answers come back under answers keyed by question id. Choice and score carry probabilities and confidence; confidence says how concentrated the distribution is, not how likely the answer is to be correct, so calibrate any threshold on your own labeled examples. Noul carries a single probability — near 1 yes, near 0 no, near 0.5 uncertain — and no confidence field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Model alias. Omit to use the server default (`openjev`). | |
| state | Yes | The content the questions are judged against: text, an object of named fields, or an array of records. Reference a nested field from `instructions` with a dotted path in backticks, e.g. `account.plan`. Fetch external records first — a URL here is not a request to browse — and note that this API accepts no image, audio, or file uploads. | |
| questions | Yes | Question id to question definition. Non-empty. Ids label the answers for your code. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hints | No | Non-blocking advice about this request, when there is any. | |
| model | No | ||
| usage | No | ||
| answers | Yes | One typed answer per requested question id. |