Decide (multiple typed questions)
jev_decideSubmit a state and a set of typed questions (choice, score, or yes/no) to get all answers in one round trip for classification, scoring, and gating decisions.
Instructions
The full Jev call: send a state and a map of typed questions, get all answers in one round trip. Each question is { type: 'choice'|'score'|'noul', instructions, criteria }. choice.criteria is a {key:desc} map; score.criteria is an ordered string array; noul has no criteria.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | Yes | The context/input. | |
| questions | Yes | Map of question name -> question object, e.g. { "topic": {"type":"choice","instructions":"...","criteria":{...}}, "urgent": {"type":"noul","instructions":"..."} } |