Add pipeline tag, library name, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -2,6 +2,8 @@
2
  base_model:
3
  - google/gemma-3-4b-it
4
  license: mit
 
 
5
  ---
6
 
7
  # Sequential-Scaled-Planner-Gemma3-4B
@@ -23,6 +25,25 @@ 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
  ## Model Collections for RecursiveMAS
27
 
28
  | Style | Model Collection |
 
2
  base_model:
3
  - google/gemma-3-4b-it
4
  license: mit
5
+ library_name: transformers
6
+ pipeline_tag: text-generation
7
  ---
8
 
9
  # Sequential-Scaled-Planner-Gemma3-4B
 
25
  ⚠️ **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.
26
  For detailed usage instructions, please refer to our [GitHub repository](https://github.com/RecursiveMAS/RecursiveMAS).
27
 
28
+ ## Sample Usage
29
+
30
+ To use this model within the RecursiveMAS framework, you can load the entire system as follows:
31
+
32
+ ```python
33
+ from system_loader import load_mas_system
34
+
35
+ # Load the whole MAS pipeline
36
+ mas = load_mas_system(
37
+ style="sequential_scaled",
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
 
49
  | Style | Model Collection |