Update README.md
Browse files
README.md
CHANGED
|
@@ -6,4 +6,50 @@ language:
|
|
| 6 |
- en
|
| 7 |
size_categories:
|
| 8 |
- n<1K
|
| 9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
- en
|
| 7 |
size_categories:
|
| 8 |
- n<1K
|
| 9 |
+
---
|
| 10 |
+
# Auto-SLURP: A Benchmark Dataset for Evaluating Multi-Agent Frameworks in Smart Personal Assistant
|
| 11 |
+
|
| 12 |
+
Repository for the paper [Auto-SLURP: A Benchmark Dataset for Evaluating Multi-Agent Frameworks in Smart Personal Assistant](https://arxiv.org/abs/2504.18373)
|
| 13 |
+
## requirements
|
| 14 |
+
To test the multi-agent frameworks, you need to first install the framework according to the instruction of the framework.
|
| 15 |
+
|
| 16 |
+
We have tested CamelAI, Langgraph, AgentLite, and AutoGEN.
|
| 17 |
+
|
| 18 |
+
## 1. start simulated servers
|
| 19 |
+
```
|
| 20 |
+
cd server
|
| 21 |
+
sh run.sh
|
| 22 |
+
```
|
| 23 |
+
## 2. run the test
|
| 24 |
+
Some external servers require API keys. Therefore, to test and send requests to these servers, please make sure to provide the necessary API keys first.
|
| 25 |
+
|
| 26 |
+
The LLM used in the example code also requires configuration. Please make sure to specify the model name and provide the corresponding API key.
|
| 27 |
+
|
| 28 |
+
Please also remember to put the data files into ~/data. Or you can modify the data path in test.py.
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
cd examples/autogen
|
| 32 |
+
sh run.sh
|
| 33 |
+
```
|
| 34 |
+
## 3. run evaluation
|
| 35 |
+
We are using gpt-4 for evaluating. Please set apikey properly. For e.g., export OPENAI_API_KEY="***".
|
| 36 |
+
|
| 37 |
+
If you want to use other models, please modify eval.py. For instance, if you want to use deepseek-v3 from deepseek API, you can change the model to "deepseek-chat", and change the api to your deepseek api. You also need to change the base_url to "https://api.deepseek.com/v1".
|
| 38 |
+
```
|
| 39 |
+
sh eval.sh
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
## Citing
|
| 43 |
+
|
| 44 |
+
If you found the data or code useful, free to cite:
|
| 45 |
+
```bibtex
|
| 46 |
+
@misc{shen2025autoslurpbenchmarkdatasetevaluating,
|
| 47 |
+
title={Auto-SLURP: A Benchmark Dataset for Evaluating Multi-Agent Frameworks in Smart Personal Assistant},
|
| 48 |
+
author={Lei Shen and Xiaoyu Shen},
|
| 49 |
+
year={2025},
|
| 50 |
+
eprint={2504.18373},
|
| 51 |
+
archivePrefix={arXiv},
|
| 52 |
+
primaryClass={cs.CL},
|
| 53 |
+
url={https://arxiv.org/abs/2504.18373},
|
| 54 |
+
}
|
| 55 |
+
```
|