Add pipeline tag, library name, and sample usage
Browse filesThis PR improves the model card by adding the following:
- `pipeline_tag: text-generation`: Ensures the model is correctly categorized on the Hugging Face Hub.
- `library_name: transformers`: Based on the configuration files, this model is compatible with the `transformers` library.
- **Sample Usage**: A code snippet from the official GitHub repository has been added to demonstrate how to load this agent within the RecursiveMAS framework.
README.md
CHANGED
|
@@ -2,7 +2,10 @@
|
|
| 2 |
base_model:
|
| 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)
|
|
@@ -23,6 +26,23 @@ RecursiveMAS treats a multi-agent system as a unified recursive computation, whe
|
|
| 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 |
|
|
@@ -53,5 +73,4 @@ For detailed usage instructions, please refer to our [GitHub repository](https:/
|
|
| 53 |
primaryClass={cs.AI},
|
| 54 |
url={https://arxiv.org/abs/2604.25917},
|
| 55 |
}
|
| 56 |
-
```
|
| 57 |
-
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3-1.7B
|
| 4 |
license: mit
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
---
|
| 8 |
+
|
| 9 |
# Sequential-Light-Planner-Qwen3-1.7B
|
| 10 |
|
| 11 |
[🌐 Project Page](https://recursivemas.github.io) | [💻 Code](https://github.com/RecursiveMAS/RecursiveMAS) | [📄 Paper](https://arxiv.org/abs/2604.25917)
|
|
|
|
| 26 |
⚠️ 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.
|
| 27 |
For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
|
| 28 |
|
| 29 |
+
## Usage
|
| 30 |
+
|
| 31 |
+
This model is intended to be used as part of the RecursiveMAS pipeline. Below is an example of how to load the system using the provided codebase:
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
from system_loader import load_mas_system
|
| 35 |
+
|
| 36 |
+
mas = load_mas_system(
|
| 37 |
+
style="sequential_light",
|
| 38 |
+
device="cuda",
|
| 39 |
+
trust_remote_code=True,
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
planner = mas.agents["planner"].model
|
| 43 |
+
critic = mas.agents["critic"].model
|
| 44 |
+
solver = mas.agents["solver"].model
|
| 45 |
+
```
|
| 46 |
|
| 47 |
## Model Collections for RecursiveMAS
|
| 48 |
|
|
|
|
| 73 |
primaryClass={cs.AI},
|
| 74 |
url={https://arxiv.org/abs/2604.25917},
|
| 75 |
}
|
| 76 |
+
```
|
|
|