Run a question set over many items
jev_mapEvaluate items in a list with custom questions, returning one compact row per item and aggregate scores. Filter, sort, or write full results to disk to focus on what matters.
Instructions
Judge every item in a list and get back one compact row per item, plus per-question aggregates. Built for triage and ranking at a scale where reading each item into context is the expensive part: filter, sort, or write the full results to disk and only pull back what matters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | No | Inline items: { id?, state, label? }. Use dataset_path instead for large sets. | |
| model | No | Model id or alias. Defaults to jev-latest. | |
| order | No | Sort direction. Default desc. | |
| filter | No | Keep rows whose answer is in a numeric range, or equals a choice option. | |
| sort_by | No | Question id to sort by: noul value, score, or choice confidence. | |
| max_rows | No | Rows to include in the table. Default 50. | |
| questions | Yes | Questions applied to every item. | |
| save_path | No | Write the full per-item results as JSON here, to keep them out of context. | |
| concurrency | No | Requests in flight. Default 8. | |
| dataset_path | No | Path to a .jsonl (one object per line) or .json file of items. | |
| include_rows | No | Set false for aggregates only. Default true. |