Add pipeline tag and sample usage
Browse filesThis PR improves the model card by:
1. Adding the `text-generation` pipeline tag to the YAML metadata for better discoverability.
2. Including a **Sample Usage** section demonstrating how to load this specific agent within the RecursiveMAS framework, as documented in the official GitHub repository.
3. Ensuring consistent formatting for model details and links to the paper and code.
README.md
CHANGED
|
@@ -2,14 +2,15 @@
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3.5-4B
|
| 4 |
license: mit
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# Deliberation-Reflector-Qwen3.5-4B
|
| 8 |
|
| 9 |
[🌐 Project Page](https://recursivemas.github.io) | [💻 Code](https://github.com/RecursiveMAS/RecursiveMAS) | [📄 Paper](https://arxiv.org/abs/2604.25917)
|
| 10 |
|
| 11 |
-
We introduce RecursiveMAS, a multi-agent framework that scales agent collaboration through latent-space recursion.
|
| 12 |
-
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 Deliberation-Style setting, the Reflector Agent reviews and refines the reasoning process, while collaborating with the Tool-Caller Agent through RecursiveLink modules for iterative improvement.
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
|
|
@@ -21,7 +22,24 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
|
|
| 21 |
| Base Model | Qwen3.5-4B |
|
| 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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
## Model Collections for RecursiveMAS
|
| 27 |
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3.5-4B
|
| 4 |
license: mit
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
---
|
| 7 |
|
| 8 |
# Deliberation-Reflector-Qwen3.5-4B
|
| 9 |
|
| 10 |
[🌐 Project Page](https://recursivemas.github.io) | [💻 Code](https://github.com/RecursiveMAS/RecursiveMAS) | [📄 Paper](https://arxiv.org/abs/2604.25917)
|
| 11 |
|
| 12 |
+
We introduce **RecursiveMAS**, a multi-agent framework that scales agent collaboration through latent-space recursion.
|
| 13 |
+
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 **Deliberation-Style** setting, the **Reflector Agent** reviews and refines the reasoning process, while collaborating with the Tool-Caller Agent through RecursiveLink modules for iterative improvement.
|
| 14 |
|
| 15 |
## Model Details
|
| 16 |
|
|
|
|
| 22 |
| Base Model | Qwen3.5-4B |
|
| 23 |
|
| 24 |
⚠️ **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.
|
| 25 |
+
|
| 26 |
+
## Sample Usage
|
| 27 |
+
|
| 28 |
+
To use this model, you should load the entire multi-agent system using the official system loader as described in the [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS):
|
| 29 |
+
|
| 30 |
+
```python
|
| 31 |
+
from system_loader import load_mas_system
|
| 32 |
+
|
| 33 |
+
# Load the full deliberation multi-agent system
|
| 34 |
+
mas = load_mas_system(
|
| 35 |
+
style="deliberation",
|
| 36 |
+
device="cuda",
|
| 37 |
+
trust_remote_code=True,
|
| 38 |
+
)
|
| 39 |
+
|
| 40 |
+
# Access the individual reflector agent
|
| 41 |
+
reflector = mas.agents["reflector"].model
|
| 42 |
+
```
|
| 43 |
|
| 44 |
## Model Collections for RecursiveMAS
|
| 45 |
|