host_process) — the harness first drives the model under test through the search loop to produce a final answer, then the judge model grades it.
How it works
A DeepSearchQA run has two stages — inference and judging — where the judging stage applies different criteria based on the task’s answer form.Inference and judging
- Inference. The model under test acts as a search agent and, driven by the harness (default
naive_search_agent), completes multi-turn tool loops such as search / visit per task, producing a natural-language answer. - Judging. The judge model (
judge_model) receives “question + ground truth + answer form + answer under test” and grades it with the official rubric template. The judge and the model under test are two separate endpoints;judge_modelmust be specified explicitly.
How the two answer forms are judged
The judge applies different criteria based on each task’sanswer_type:
- Single Answer (316 tasks): the answer under test is judged correct if it semantically hits the ground truth; verbatim matching is not required.
- Set Answer (584 tasks): the ground truth is a set of items, and the answer under test must ** hit every item ; the judge also checks whether the answer includes ** excessive answers beyond the ground truth.
Correctness Details (a per-item boolean dictionary of hits), Excessive Answers (a list of extra answers), and Explanation (the grading rationale). A task is judged correct ** if and only if ** all expected items are hit ** and ** no excessive answers exist; any missing item or any excessive answer counts as incorrect.
Parameters
Pass a JSON object via--benchmark-params '{...}', or a benchmark.params block in the YAML given to --config; the CLI wins on shared keys. See the Benchmark overview for merge precedence.
Parameter reference
| Parameter | Type | Default | Choices / values | Description |
|---|---|---|---|---|
judge_model | dict | null | id, base_url, api_key, api_protocol, params | Judge model spec, required (see Judge model spec). It decides grading, and is not the CLI —model-*. |
category | string / list | ”all" | "all”, a single category name, or a list of category names (17 listed below) | Filter tasks by category; “all” = no filter. A list takes the union. |
answer_type | string | ”all” | all / Single Answer / Set Answer | Filter tasks by answer form; all = no filter. Case and full name must match exactly. |
sample_ids follow Benchmark Parameters. Configure repeated attempts with --k and --attempt-strategy; see Metrics and Aggregation.
All 17 category values (click to expand)
All 17 category values (click to expand)
Politics & Government (148), Finance & Economics (132), Geography (95), Education (94), Health (92), Science (90), Other (65), History (44), Travel (36), Media & Entertainment (29), Arts (26), Technology (22), Sports (20), Current Events (3), Biology (2), Linguistics (1), Arts & Entertainment (1). Numbers in parentheses are the task count per category (900 total).Judge model spec
judge_model is passed as a dict with the fields id, base_url, api_key, api_protocol, and params, pointing to the judge model’s own endpoint, with inference parameters under params.
We recommend fixing a single judge across all models under test. Grading directly decides the scores, so switching judges makes scores no longer comparable across models; likewise, the model under test should not serve as its own judge, as that is neither fair nor comparable. The judge need not be especially strong — DeepSearchQA’s criteria (semantic hit + excess check) are relatively objective, so a mid-sized model suffices. AgentCompass recommends Qwen3.6-35B-A3B.
Run examples
The DeepSearchQA run command has this form:deepsearchqa— the benchmark id;<harness>— the harness that drives the model under test through the search loop, defaulting tonaive_search_agent; its own configuration is passed via--harness-params;<model>— the model under test, i.e. the agent that performs retrieval and answering; its access credentials are passed via--model-base-url/--model-api-key.
--benchmark-params for dataset and judge settings, --harness-params for agent and tool settings, and --execution-params for phase timeouts and multipliers. YAML uses benchmark.params, harness.params, and execution; explicit CLI values override YAML values.
In the examples below, --harness-params always passes the Serper and Jina keys required for retrieval directly via serper_api_key / jina_api_key (the search / visit tools of naive_search_agent depend on them); the three examples differ only in --benchmark-params.
- Smoke test (single task end-to-end)
- Custom parameters
- AgentCompass recommended config
Use
sample_ids to evaluate a single task, verifying that the end-to-end inference and judging flow works; defaults for the rest.Outputs
A run writes per-task details and the aggregate viewssummary.md and metrics.json under the run directory.
Metric Contract and aggregate series
summary.md keeps the traditional metric and detail tables at k=1; at k>1, it shows the attempt plan plus headline and auxiliary series with independent Evaluated, Error, Unavailable, and Total counts. metrics.json preserves every series and breakdown.
The primary metric is binary correct. At k=1, correct.native@1 is the accuracy over evaluated observations and is true only when all expected items are hit without excessive answers. At k>1, the generic reducers can emit correct.avg@k and correct.pass@k, each with independent counts.
Per-task details (details/)
Each task has one JSON file. Its binary observation isattempts.<N>.metrics.correct, and raw judge evidence is recorded under attempts.<N>.meta.benchmark.scoring for item-by-item tracing:
When judging fails (judge endpoint error, empty return, invalid JSON, and so on), the attempt has
status=eval_error; the failure reason is recorded in meta.benchmark.scoring.error (for example, judge_call_failed or invalid_json_response).