RecursiveMAS commited on
Commit
a729b79
·
verified ·
1 Parent(s): 520054b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -1
README.md CHANGED
@@ -3,5 +3,55 @@ base_model:
3
  - Qwen/Qwen3-1.7B
4
  license: mit
5
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
- The Planner Agent of Sequential-Style (light) MAS in the paper: Recursive Multi-Agent Systems. (base model: Qwen/Qwen3-1.7B)
 
3
  - Qwen/Qwen3-1.7B
4
  license: mit
5
  ---
6
+ # Sequential-Light-Planner-Qwen3-1.7B
7
+
8
+ [🌐 Project Page](https://recursivemas.github.io) | [💻 Code](https://github.com/RecursiveMAS/RecursiveMAS) | [📄 Paper](https://arxiv.org/abs/2604.25917)
9
+
10
+ We introduce the RecursiveMAS, a multi-agent framework that scales agent collaboration through latent-space recursion.
11
+ RecursiveMAS treats a multi-agent system as a unified recursive computation, where heterogeneous agents iteratively exchange, refine, and evolve their latent states across recursion rounds. In the Sequential-Light setting, the Planner Agent is responsible for producing the initial reasoning plan, which is then passed to subsequent agents through lightweight RecursiveLink modules for further refinement and solution generation.
12
+
13
+ ## Model Details
14
+
15
+ | Item | Description |
16
+ |---|---|
17
+ | Model | Sequential-Light-Planner-Qwen3-1.7B |
18
+ | Collaboration Style | Sequential-Light |
19
+ | Agent Role | Planner Agent |
20
+ | Base Model | Qwen3-1.7B |
21
+
22
+
23
+ ⚠️ Note: This checkpoint is a **role-specific agent** in [**RecursiveMAS**](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain text generation.
24
+ For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
25
+
26
+
27
+ ## Model Collections for RecursiveMAS
28
+
29
+ | Style | Model Collection |
30
+ |---|---|
31
+ | Sequential-Style | [🤗 HuggingFace](https://huggingface.co/collections/RecursiveMAS/sequential-style-recursivemas) |
32
+ | Mixture-Style | [🤗 HuggingFace](https://huggingface.co/collections/RecursiveMAS/mixture-style-recursivemas) |
33
+ | Distillation-Style | [🤗 HuggingFace](https://huggingface.co/collections/RecursiveMAS/distillation-style-recursivemas) |
34
+ | Deliberation-Style | [🤗 HuggingFace](https://huggingface.co/collections/RecursiveMAS/deliberation-style-recursivemas) |
35
+
36
+
37
+ ## Experiment Results
38
+
39
+ <p align="center">
40
+ <img src="https://raw.githubusercontent.com/RecursiveMAS/RecursiveMAS/main/assets/hero_fig.png" width="95%" alt="RecursiveMAS Experiment Results">
41
+ </p>
42
+
43
+
44
+ ## Citation
45
+
46
+ ```bibtex
47
+ @misc{recursivemas,
48
+ title={Recursive Multi-Agent Systems},
49
+ author={Xiyuan Yang and Jiaru Zou and Rui Pan and Ruizhong Qiu and Pan Lu and Shizhe Diao and Jindong Jiang and Hanghang Tong and Tong Zhang and Markus J. Buehler and Jingrui He and James Zou},
50
+ year={2026},
51
+ eprint={2604.25917},
52
+ archivePrefix={arXiv},
53
+ primaryClass={cs.AI},
54
+ url={https://arxiv.org/abs/2604.25917},
55
+ }
56
+
57