init dataset (#2)
Browse files- init dataset (16bca26c28163f42983cd19de8ad318723d512d5)
Co-authored-by: Wei He <hewei2001@users.noreply.huggingface.co>
- LICENSE +21 -0
- README.md +63 -0
- assets/overall_performance.png +3 -0
- cross_domain/tasks.json +0 -0
- delivery/tasks.json +0 -0
- instore/tasks.json +0 -0
- ota/tasks.json +0 -0
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2025 Meituan
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<div align=center><h1>
|
| 2 |
+
🌱VitaBench: Benchmarking LLM Agents<br>
|
| 3 |
+
with Versatile Interactive Tasks
|
| 4 |
+
</h1></div>
|
| 5 |
+
|
| 6 |
+
<p align="center">
|
| 7 |
+
📃 <a href="https://arxiv.org/abs/xxxx" target="_blank">Paper</a > • 🌐 <a href="https://vitabench.github.io/" target="_blank">Website</a > • 🏆 <a href="https://vitabench.github.io/#leaderboard" target="_blank">Leaderboard</a > • 🤗 <a href="https://huggingface.co/datasets/meituan/VitaBench" target="_blank">Dataset</a ><br>
|
| 8 |
+
</p >
|
| 9 |
+
|
| 10 |
+
## 🔔 News
|
| 11 |
+
|
| 12 |
+
- [2025-10] Our paper is released on arXiv: [VitaBench: Benchmarking LLM Agents with Versatile Interactive Tasks in Real-world Applications](https://arxiv.org/abs/2509.26490)
|
| 13 |
+
- [2025-10] The VitaBench suite is released, including the **codebase, dataset and evaluation pipeline**! If you have any questions, feel free to raise issues and/or submit pull requests for new features of bug fixes.
|
| 14 |
+
|
| 15 |
+
## 📖 Introduction
|
| 16 |
+
|
| 17 |
+
In this paper, we introduce **VitaBench**, a challenging benchmark that evaluates agents on **v**ersatile **i**nteractive **ta**sks grounded in real-world settings. Drawing from daily applications in food delivery, in-store consumption, and online travel services, VitaBench presents agents with the most complex life-serving simulation environment to date, comprising **66 tools**. Through a framework that eliminates domain-specific policies, we enable flexible composition of these scenarios and tools, yielding **100 cross-scenario tasks (main results) and 300 single-scenario tasks**. Each task is derived from multiple real user requests and requires agents to reason across temporal and spatial dimensions, utilize complex tool sets, proactively clarify ambiguous instructions, and track shifting user intent throughout multi-turn conversations.
|
| 18 |
+
|
| 19 |
+
Moreover, we propose a rubric-based sliding window evaluator, enabling robust assessment of diverse solution pathways in complex environments and stochastic interactions. Our comprehensive evaluation reveals that even the most advanced models achieve only 30% success rate on cross-scenario tasks, and less than 50% success rate on others. Overall, we believe VitaBench will serve as a valuable resource for advancing the development of AI agents in practical real-world applications.
|
| 20 |
+
|
| 21 |
+
> *The name “Vita” derives from the Latin word for “Life”, reflecting our focus on life-serving applications.*
|
| 22 |
+
|
| 23 |
+

|
| 24 |
+
|
| 25 |
+
## 🌱 Benchmark Details
|
| 26 |
+
|
| 27 |
+
VitaBench provides an evaluation framework that supports model evaluations on both single-domain and cross-domain tasks through flexible configuration. For cross-domain evaluation, simply connect multiple domain names with commas—this will automatically merge the environments of the specified domains into a unified environment.
|
| 28 |
+
|
| 29 |
+
Statistics of databases and environments:
|
| 30 |
+
|
| 31 |
+
| | Cross-Scenarios<br>(All domains) | Delivery | In-store | OTA |
|
| 32 |
+
| :----------------------------- | :------------------------------: | :------: | :------: | :---: |
|
| 33 |
+
| **Databases** | | | | |
|
| 34 |
+
| Service Providers | 1,324 | 410 | 611 | 1,437 |
|
| 35 |
+
| Products | 6,946 | 788 | 3,277 | 9,693 |
|
| 36 |
+
| Transactions | 447 | 48 | 28 | 154 |
|
| 37 |
+
| **API Tools** | | | | |
|
| 38 |
+
| Write | 27 | 4 | 9 | 14 |
|
| 39 |
+
| Read | 33 | 10 | 10 | 19 |
|
| 40 |
+
| General | 6 | 6 | 5 | 5 |
|
| 41 |
+
| **Tasks** | 100 | 100 | 100 | 100 |
|
| 42 |
+
|
| 43 |
+
## 🛠️ Environment
|
| 44 |
+
|
| 45 |
+
VitaBench provides an evaluation framework that supports model evaluations on both single-domain and cross-domain tasks through flexible configuration. For cross-domain evaluation, simply connect multiple domain names with commas—this will automatically merge the environments of the specified domains into a unified environment. Please visit our GitHub repository [vitabench](https://github.com/meituan/vitabench) for more detailed instructions.
|
| 46 |
+
|
| 47 |
+
## 🔎 Citation
|
| 48 |
+
|
| 49 |
+
If you find our work helpful or relevant to your research, please kindly cite our paper:
|
| 50 |
+
|
| 51 |
+
```
|
| 52 |
+
@article{he2025vitabench,
|
| 53 |
+
title={VitaBench: Benchmarking LLM Agents with Versatile Interactive Tasks in Real-world Applications},
|
| 54 |
+
author={He, Wei and Sun, Yueqing and Hao, Hongyan and Hao, Xueyuan and Xia, Zhikang and Gu, Qi and Han, Chengcheng and Zhao, Dengchang and Su, Hui and Zhang, Kefeng and Gao, Man and Su, Xi and Cai, Xiaodong and Cai, Xunliang and Yang, Yu and Zhao, Yunke},
|
| 55 |
+
journal={arXiv preprint arXiv:22509.26490},
|
| 56 |
+
year={2025}
|
| 57 |
+
}
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## 📜 License
|
| 61 |
+
|
| 62 |
+
This project is licensed under the MIT License - see the [LICENSE](./LICENSE) file for details.
|
| 63 |
+
|
assets/overall_performance.png
ADDED
|
Git LFS Details
|
cross_domain/tasks.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
delivery/tasks.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
instore/tasks.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
ota/tasks.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|