xbench/AgentIF-OneDay 已完整同步
Dataset Card for AgentIF-OneDay
Dataset Details
AgentIF-OneDay is a comprehensive benchmark designed to evaluate AI agents on diverse, daily tasks across work, life, and learning scenarios. Unlike evaluations focused solely on task difficulty, this dataset emphasizes the breadth of general user needs, requiring agents to handle complex attachments, infer implicit instructions, and deliver tangible file-based outputs. It comprises 104 tasks structured around Open Workflow Execution, Latent Instruction, and Iterative Refinement.
Data Structure
Each instance in the dataset is a JSON object with the following fields:
Fields
-
question_id(string): Unique identifier for the task (e.g., "taskif_1", "taskif_2") -
title(string): Brief title summarizing the task -
description(string): Detailed task description including step-by-step instructions and requirements -
attachment_filenames(list of strings): List of attachment file names associated with the task (may be empty) -
score_criteria(list of objects): List of scoring criteria objects, each containing:content(string): Description of the criterionscore(integer): Points awarded (positive) or deducted (negative) for this criterion
-
reference_answer_description(string): Description or example of the expected answer (may be empty) -
reference_answer_attachment_filenames(list of strings): List of reference answer attachment file names (may be empty) -
task_tag(string): Category of task execution type. Possible values:- "Open Workflow Execution"
- "Iterative Refinement"
- "Latent Instruction Inference"
-
domain_tag(string): Domain category. Possible values:- "Work"
- "Life"
- "Study"
-
rubrics_tag(string): Evaluation focus area. Possible values:- "Content"
- "Form"
- "Execution"
-
time(string): Expected time to complete the task. Possible values:- "<1h" (less than 1 hour)
- "2h" (2 hours)
- "4h" (4 hours)
- "8-24h" (8 to 24 hours)
Example
{
"question_id": "taskif_1",
"title": "NVIDIA Financial Data Analysis",
"description": "I am currently conducting a business analysis of NVIDIA and need you to complete the following steps...",
"attachment_filenames": [],
"score_criteria": [
{
"content": "[nvidia_finance_analysis.xlsx] Correct integration of 2020-2025 data",
"score": 1
},
{
"content": "[nvidia_finance_analysis.xlsx] Correctly determines that Gross Margin should be calculated",
"score": 1
}
],
"reference_answer_description": "",
"reference_answer_attachment_filenames": [
"taskif_1 + answer + nvidia_finance_analysis.xlsx"
],
"task_tag": "Open Workflow Execution",
"domain_tag": "Work",
"rubrics_tag": "Content",
"time": "2h"
}
Dataset Statistics
- Total instances: 104 tasks
- Task categories: 3 types (Open Workflow Execution, Iterative Refinement, Latent Instruction Inference)
- Domains: 3 categories (Work, Life, Study)
- Time complexity: Ranges from <1 hour to 8-24 hours
Contact
For questions or feedback, please contact: team@xbench.org
Citation
If you use this dataset in your research, please cite our paper:
@misc{chen2026agentifoneday,
title={AgentIF-OneDay: A Task-level Instruction-Following Benchmark for General AI Agents in Daily Scenarios},
author={Kaiyuan Chen and Qimin Wu and Taiyu Hou and Tianhao Tang and Xueyu Hu and Yuchen Hou and Bikun Li and Chengming Qian and Guoyin Wang and Haolin Chen and Haotong Tian and Haoye Zhang and Haoyu Bian and Hongbing Pan and Hongkang Zhang and Hongyi Zhou and Jiaqi Cai and Jiewu Rao and Jiyuan Ren and Keduan Huang and Lucia Zhu Huang and Mingyu Yuan and Naixu Guo and Qicheng Tang and Qinyan Zhang and Shuai Chen and Siheng Chen and Ting Ting Li and Xiaoxing Guo and Yaocheng Zuo and Yaoqi Guo and Yinan Wang and Yinzhou
180 个文件
浏览文件数据集版权信息
本数据集的许可证为 MIT License。如有违反相关条款,请联系 WEHUB,我们将及时处理。 查看许可证
通过 WeHub CLI 下载当前数据集快照。下列命令会固定为当前页面展示的数据版本(如果页面提供版本)。文件字节由本机直连存储下载,浏览器不会签发或保存下载链接。
前置要求
需要 Node.js 18 及以上,以及 npm(或 npx)。
1. 安装 CLI
npm install -g wehub-cli@latest
2. 下载此数据集
wehub datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390
若中断或部分失败,在同一目录重新执行同一命令即可续传。默认会校验 SHA-256。
免全局安装
npx --yes wehub-cli@latest datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390
高级选项
以下为 wehub datasets download 已支持的参数示例:
强制重新下载,不复用已校验的本地文件
wehub datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390 --overwrite
仅包含匹配路径
wehub datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390 --include "*.jsonl"
排除匹配路径
wehub datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390 --exclude "*.md"
提高并发下载数
wehub datasets download ds_ext_4267_797664b390 --revision 1e8e7490661beda38715b1376e89639801fb0667 --output ./ds_ext_4267_797664b390 --jobs 8
完整帮助:wehub datasets download --help