Add pipeline tag and sample usage
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
# Deliberation-Outerlinks
|
| 6 |
|
| 7 |
[π Project Page](https://recursivemas.github.io) | [π» Code](https://github.com/RecursiveMAS/RecursiveMAS) | [π Paper](https://arxiv.org/abs/2604.25917)
|
| 8 |
|
| 9 |
-
We introduce RecursiveMAS, a multi-agent framework that scales agent collaboration through latent-space recursion.
|
| 10 |
-
|
|
|
|
| 11 |
|
| 12 |
## Model Details
|
| 13 |
|
|
@@ -19,8 +21,27 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
|
|
| 19 |
| Reflector-Toolcaller-Outerlink.pt | Reflector Agent β Tool-Caller Agent |
|
| 20 |
| Toolcaller-Reflector-Outerlink.pt | Tool-Caller Agent β Reflector Agent |
|
| 21 |
|
| 22 |
-
β οΈ **Note:** This checkpoint contains **Outer RecursiveLink modules**
|
| 23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Model Collections for RecursiveMAS
|
| 26 |
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
---
|
| 5 |
|
| 6 |
# Deliberation-Outerlinks
|
| 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 **RecursiveMAS**, a multi-agent framework that scales agent collaboration through **latent-space recursion**. 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.
|
| 11 |
+
|
| 12 |
+
In the **Deliberation-Style** setting, the Reflector Agent and Tool-Caller Agent collaborate through Outer RecursiveLink modules for iterative reasoning, tool-oriented execution, and refinement.
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
|
|
|
|
| 21 |
| Reflector-Toolcaller-Outerlink.pt | Reflector Agent β Tool-Caller Agent |
|
| 22 |
| Toolcaller-Reflector-Outerlink.pt | Tool-Caller Agent β Reflector Agent |
|
| 23 |
|
| 24 |
+
β οΈ **Note:** This checkpoint contains **Outer RecursiveLink modules** for [**RecursiveMAS**](https://arxiv.org/abs/2604.25917), rather than a standalone model intended for plain-text generation.
|
| 25 |
+
|
| 26 |
+
## Sample Usage
|
| 27 |
+
|
| 28 |
+
To load the full Deliberation-Style system using these modules, you can use the high-level API provided in the [official repository](https://github.com/RecursiveMAS/RecursiveMAS):
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
from system_loader import load_mas_system
|
| 32 |
+
|
| 33 |
+
# Load the deliberation style multi-agent system
|
| 34 |
+
mas = load_mas_system(
|
| 35 |
+
style="deliberation",
|
| 36 |
+
device="cuda",
|
| 37 |
+
trust_remote_code=True,
|
| 38 |
+
)
|
| 39 |
+
|
| 40 |
+
reflector = mas.agents["reflector"].model
|
| 41 |
+
toolcaller = mas.agents["toolcaller"].model
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
For detailed execution commands on downstream tasks, please refer to the [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
|
| 45 |
|
| 46 |
## Model Collections for RecursiveMAS
|
| 47 |
|