Ko-widesearch
收藏资源简介:
Ko-WideSearch是一个专为评估网络代理能力设计的韩语广度搜索基准测试数据集。其核心任务要求代理穷举枚举一个封闭集合中的所有成员,并完整填充表格的每个属性单元格(例如,“列出第59届大钟奖的所有奖项类别并给出每位获奖者”)。数据集包含228个任务,根据复杂度分为三个难度等级:简单级(116个任务,涉及单一主键,属性主要位于成员页面)、中级(67个任务,涉及更宽的表格或跨来源属性)和困难级(45个任务,涉及多列、二维复合键和跨来源查询)。数据以JSONL格式存储,每条记录代表一个任务,包含明文字段(如任务ID、难度等级、主题类别等)和加密字段(如任务提示和标准答案,经过Canary-XOR混淆加密以防止网络爬虫抓取和训练集去重过滤,确保基准测试的公平性)。解密后的标准答案包括答案集、来源、列信息、评分规范等。该数据集适用于问答和表格问答任务,特别用于评估网络代理在韩语环境下进行广度信息检索、信息整合和结构化表格生成的能力。模型预期输出为一个单一的Markdown表格,列与解密后的列一致,需覆盖集合中的每个成员,并使用“/”表示确实缺失的单元格;评分基于单元格级别,考核集合成员资格和属性匹配度。
Ko-WideSearch is a Korean breadth-search benchmark dataset designed to evaluate web agent capabilities. Its core task requires agents to exhaustively enumerate all members in a closed set and fully populate each attribute cell of a table (e.g., List all award categories of the 59th Daejong Film Awards and provide each winner). The dataset contains 228 tasks, divided into three difficulty tiers based on complexity: easy (116 tasks, involving a single primary key with attributes mainly on member pages), medium (67 tasks, involving wider tables or cross-source attributes), and hard (45 tasks, involving multiple columns, two-dimensional composite keys, and cross-source queries). Data is stored in JSONL format, with each record representing a task. Records include plaintext fields (such as task ID, difficulty tier, category, number of columns in the answer table, and a public Canary string for decryption) and encrypted fields. The core task prompt (question) and standard answer (answer) are obfuscated using Canary-XOR encryption to prevent web crawling or inclusion in training set deduplication filters, ensuring benchmark fairness and leakage prevention. The decrypted answer field is a dictionary containing answer_set (standard answer rows), exclusions, sources, n_rows, columns, column_specs, key_columns, hardness_tier, as_of, and evaluation (scoring specifications). The dataset is suitable for question answering and table QA tasks, particularly for evaluating web agents ability in Korean-language breadth information retrieval, information integration, and structured table generation. The expected model output is a single Markdown table with columns matching the decrypted columns, covering every member in the set, and using / to denote genuinely missing cells. Scoring is based on cell-level evaluation, assessing set membership and attribute matching.
数据集名称
Ko-WideSearch
数据集简介
Ko-WideSearch 是一个韩语广度搜索基准测试(breadth-search benchmark),旨在评估网络智能体(web agent)在韩语环境中执行穷举枚举封闭集合并填充表格所有属性单元格任务的能力。数据集共包含 228 个任务,分为三个难度等级。
数据集语言
- 韩语(ko)
数据集许可
- CC-BY-4.0
数据集标签
- 任务类别:问题回答(question-answering)、表格问题回答(table-question-answering)
- 标签:网络智能体(web-agents)、广度搜索(breadth-search)、韩语(korean)、集合枚举(set-enumeration)、加密(encrypted)
数据集大小
- 样本总数 < 1000(n<1K)
数据集拆分
| 拆分 | 样本数量 | 描述 |
|---|---|---|
| easy | 116 | 单一主键,属性大多在成员页面中 |
| medium | 67 | 表格更宽 / 跨来源属性 |
| hard | 45 | 多列,二维复合键,跨来源 |
| 总计 | 228 |
数据格式
每条记录为一个 JSON 对象。部分字段为明文,关键的 question 和 answer 字段已加密。
| 字段 | 是否加密 | 描述 |
|---|---|---|
id |
否 | 任务 ID(格式:kws-...) |
difficulty_tier |
否 | 难度等级:easy / medium / hard |
category |
否 | 主题分类(如:娱乐/媒体、体育等) |
n_cols |
否 | 答案表格的列数 |
canary |
否 | 公共金丝雀字符串(=解密密钥) |
question |
是 | 韩语任务提示 |
answer |
是 | 所有标准答案字段的 JSON 包(解密后为字典) |
解密 answer 后得到包含以下字段的字典:answer_set(标准答案行)、exclusions(排除项)、sources(来源)、n_rows(行数)、columns(列名)、column_specs(列规格)、key_columns(键列)、hardness_tier(难度等级)、as_of(截止时间)和 evaluation(评分规范)。
加密与解密
- 加密方案:Canary-XOR 混淆,与 OpenAI BrowseComp 和
Forival/LiveBrowseComp相同。 - 加密方式:将
canary字符串通过 SHA-256 哈希生成密钥,对明文 UTF-8 字节进行 XOR 操作,然后 Base64 编码。 - 解密方法:提供 Python 示例代码,可本地解密。
- 数据集中包含独立的
decrypt.py脚本,可批量解密。
任务输出规范
每个问题的预期输出是一个 Markdown 表格,列名为解密后的 columns,需覆盖集合中的每一个成员,对于真正缺失的单元格用 / 表示。评分依据解密后的 evaluation 规范,进行基于单元格的匹配(集合成员 + 每个属性匹配)。
相关链接
- 项目页面:https://minstar.github.io/Ko-widesearch/
- 论文:Ko-WideSearch: A Korean Breadth-Search Benchmark for Web Agents
引用格式
bibtex @misc{kowidesearch2026, title = {Ko-WideSearch: A Korean Breadth-Search Benchmark for Web Agents}, author = {Jeong, Minbyul}, year = {2026}, url = {https://minstar.github.io/Ko-widesearch/} }




