2505 and 2510, each containing 100 tasks.
The official datasets are encrypted to reduce search-engine indexing and benchmark contamination. AgentCompass downloads the selected encrypted CSV, decrypts each question and reference answer while loading the tasks, and does not write the plaintext dataset back to disk. Do not publish decrypted benchmark content.
How it works
An xbench-DeepSearch run has two stages: inference and judging.Inference and judging
- Inference. The model under test acts as a search agent. A harness such as
naive_search_agentdrives it through search and page-visit tool calls, then returns its natural-language response. - Judging. AgentCompass first extracts the value after
最终答案:from the response. If that value exactly matches the reference answer, the task is immediately marked correct. Otherwise,judge_modelreceives the question, reference answer, and complete response using the official Chinese grading prompt. The judge’s结论: 正确or结论: 错误determines the result.
correct observation falls back to false, enters the accuracy denominator, and also contributes to the independent error count.
Releases and task IDs
The releases are separate evaluation sets. Select one with
version; sample_ids must refer to IDs in the selected release.
Parameters
Pass benchmark configuration with--benchmark-params '{...}', or place it under benchmark.params in the YAML supplied to --config; command-line values take precedence. See the Benchmark overview for shared parameter behavior.
Parameter reference
| Parameter | Type | Default | Choices / values | Description |
|---|---|---|---|---|
version | string | ”2510" | "2505” / “2510” | Selects the official dataset release. |
judge_model | dict | null | id, base_url, api_key, api_protocol, params | Judge model spec, required. It grades every response that does not pass exact match and is distinct from the CLI —model-* configuration. |
sample_ids follow Benchmark Parameters. Configure repeated attempts with --k and --attempt-strategy; see Metrics and Aggregation.
Judge model spec
judge_model is a model spec with the fields id, base_url, api_key, api_protocol, and params. Put judge inference options under params. Although omitted endpoint fields can inherit the tested model’s connection settings, use a complete, independent judge spec for reproducible comparisons. Keep the same judge configuration across all models in an experiment because changing the judge changes the scoring standard.
Run examples
Use this command:--benchmark-params. Search-agent options and service credentials belong in --harness-params.
The examples use naive_search_agent. Its search and visit tools require Serper and Jina credentials respectively.
- Smoke test (single task end-to-end)
- Run the 2505 release
- AgentCompass recommended config
Run one task from the default
2510 release to verify dataset loading, search, and judging.SERPER_API_KEY and JINA_API_KEY before running. If you already have an official encrypted CSV, set dataset_path; use dataset_url only when you need an encrypted mirror.
Outputs
A run writes per-task details and the aggregate viewssummary.md and metrics.json under the run directory.
Aggregate metrics (summary.md)
The primary metric is binarycorrect. At k=1, correct.native@1 is the accuracy over evaluated observations; at k>1, the generic reducers can emit correct.avg@k and correct.pass@k. A non-completed attempt without an explicit verdict contributes false, so it remains in the denominator while the series’ independent error count preserves the diagnostic.
Per-task details (details/)
Each task JSON records task-levelground_truth and per-attempt final answer, status, trajectory, and binary metrics.correct. Judge evidence is stored under attempts.<N>.meta.benchmark.scoring:
The selected release is also stored in
attempts.<N>.meta.benchmark.version, and task metadata records the pinned upstream revision.