🧭 BrowseComp-ZH: Benchmarking the Web Browsing Ability of Large Language Models in Chinese

May 11, 2025 · View on GitHub

🇨🇳 中文版项目介绍 (Chinese)

BrowseComp-ZH is the first high-difficulty benchmark specifically designed to evaluate the real-world web browsing and reasoning capabilities of large language models (LLMs) in the Chinese information ecosystem. Inspired by BrowseComp (Wei et al., 2025), BrowseComp-ZH targets the unique linguistic, structural, and retrieval challenges of the Chinese web, including fragmented platforms, implicit linguistic patterns, and content censorship.

📄 Paper Link(arXiv)

👥 Authors

Peilin Zhou, Bruce Leon, Xiang Ying, Can Zhang, Yifan Shao, Qichen Ye, Dading Chong, Zhiling Jin, Chenxuan Xie, Meng Cao, Yuxin Gu, Sixin Hong, Jing Ren, Jian Chen, Chao Liu, Yining Hua

🌟 Key Features

  • 🔍 Native Chinese Construction: All questions, retrieval chains, and browsing steps are authored directly in Chinese by experts to avoid translation artifacts and ensure authentic search difficulty.
  • 🧩 Reverse-Engineered Multi-Hop Queries: Each task starts from a known factual answer and is crafted with multiple constraints (e.g., time, entity type, description) to ensure high retrieval difficulty and answer uniqueness.
  • 🌐 Tri-Engine Validation and Dual-Stage Quality Control: All questions are verified across Baidu, Bing (China), and Google; a two-stage human-in-the-loop protocol filters out easily retrievable or ambiguous samples.
  • 🤖 Comprehensive Benchmarking: 20+ systems—including open-source LLMs, closed-source APIs, and agentic search systems—are evaluated to diagnose browsing and reasoning capabilities across different architectures.

📁 Repository Structure

BrowseComp-ZH/
├── data/
│   ├── browsecomp-zh-encrypted.xlsx   # Encrypted dataset
│   └── browsecomp-zh-decrypt.py       # Decryption script
├── images/                            # Visualizations and charts
├── paper/                             # Paper and supplementary 
├── README.md
└── requirements.txt

🛠️ Environment Installation

cd BrowseComp-ZH
conda create --name BrowseComp python=3.12
conda activate BrowseComp
pip install -r requirements.txt

🔐 Dataset Access

The BrowseComp-ZH dataset contains 289 complex multi-hop retrieval and reasoning questions, spanning 11 domains including Film & TV, Technology, Medicine, and History.

To prevent unauthorized pretraining and preserve the evaluation value of the dataset, all samples are encrypted.
To decrypt the dataset:

python data/browsecomp-zh-decrypt.py --input data/browsecomp-zh-encrypted.xlsx --output data/browsecomp-zh-decrypted.xlsx --json_output raw_data/browsecomp-zh-decrypted.json

You will be prompted for a canary token embedded within the file.

📊Evaluation

The evaluation is divided into two parts: model evaluation and result statistics.

cd BrowseComp-ZH
# model evaluation
bash run.sh
# result statistics
python run_acc_calibration_error.py

Folder Structure

  • raw_data:json format evaluation dataset
  • predict_data:detailed model responses
  • eval_data:gpt-4o answer extraction results
  • output_data:final evaluation results
  • outcome_data:acc and calibration_error statistics

🏆 Model Performance Overview

ModelCategoryReasoningBrowsingAccuracyCalibration Error (%)Enterprise
DeepSeek-V3Open-SourceNoNo8.7%72DeepSeek
DeepSeek-R1Open-SourceYesNo23.2%59DeepSeek
Qwen2.5-72B-InstructOpen-SourceNoNo6.6%62Alibaba
QwQ-32BOpen-SourceYesNo11.1%64Alibaba
Qwen3-235B-A22B (Non-Thinking)Open-SourceNoNo8.0%80Alibaba
Qwen3-235B-A22B (Thinking)Open-SourceYesNo13.2%67Alibaba
LlaMa4Open-SourceNoNo4.8%70Meta
GPT4oClosed-SourceNoNo6.2%73OpenAI
O1Closed-SourceYesNo29.1%52OpenAI
O4-miniClosed-SourceYesNo15.2%42OpenAI
Claude-3.5-SonnetClosed-SourceNoNo5.5%78Anthropic
Claude-3.7-SonnetClosed-SourceYesNo17.7%71Anthropic
Gemini-2.0-FlashClosed-SourceNoNo6.9%74Google
Gemini-2.5-ProClosed-SourceYesNo27.3%59Google
Qwen2.5-MAXClosed-SourceNoNo7.6%78Alibaba
OpenAI DeepResearchAI Search Product-Yes42.9%9OpenAI
Grok3 (Research)AI Search Product-Yes12.9%39xAI
Perplexity (Research)AI Search Product-Yes22.6%53Perplexity
Doubao (Deep Search)AI Search Product-Yes26.0%61ByteDance
Doubao (Standard)AI Search Product-Yes18.7%37ByteDance
Kimi (Deep Think)AI Search Product-Yes8.0%58Moonshot
Yuanbao (Hunyuan Model)AI Search Product-Yes12.2%56Tencent
DeepSeek (Deep Think)AI Search Product-Yes7.6%65DeepSeek
DeepSeek (Standard)AI Search Product-Yes4.8%66DeepSeek

📊 Key Findings

  • 📉 Most standalone LLMs achieve less than 10% accuracy on BrowseComp-ZH, reflecting the benchmark’s difficulty.
  • 🧠 Models with explicit reasoning capabilities consistently outperform their non-reasoning counterparts (e.g., DeepSeek-R1 vs. DeepSeek-V3, Claude-3.7 vs. Claude-3.5).
  • 🔍 Retrieval-augmented systems significantly outperform pure LLMs, with DeepResearch achieving the highest accuracy (42.9%).
  • 🔄 Multi-hop retrieval pipelines are critical: Single-shot retrieval systems (e.g., DeepSeek, Kimi) struggle to meet task complexity.
  • 📈 Calibration error correlates with retrieval-reasoning effectiveness, highlighting challenges in confidence estimation during browsing.

📎 Citation

If you use BrowseComp-ZH in your research, please cite:

@article{zhou2025browsecomp,
  title={BrowseComp-ZH: Benchmarking Web Browsing Ability of Large Language Models in Chinese},
  author={Zhou, Peilin and Leon, Bruce and Ying, Xiang and Zhang, Can and Shao, Yifan and Ye, Qichen and Chong, Dading and Jin, Zhiling and Xie, Chenxuan and Cao, Meng and others},
  journal={arXiv preprint arXiv:2504.19314},
  year={2025}
}

🤝 Contact & Contribution

We welcome questions, suggestions, and contributions!
Please open an issue or contact @PALIN2018.

🛡️ License

BrowseComp-ZH is released under the MIT License.
The dataset is intended solely for academic research purposes and must not be used for sensitive or high-stakes decision-making.