File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -116,13 +116,21 @@ The CLI will prompt you to input instructions interactively:
116
116
117
117
You can configure the demo by specifying the following parameters:
118
118
119
- - ` --aggregator ` : The primary model used for final response generation.
120
- - ` --reference_models ` : List of models used as references.
119
+ - ` --model ` : The primary model used for final response generation.
120
+ - ` --reference-models ` : Models used as references.
121
121
- ` --temperature ` : Controls the randomness of the response generation.
122
- - ` --max_tokens ` : Maximum number of tokens in the response.
122
+ - ` --max-tokens ` : Maximum number of tokens in the response.
123
123
- ` --rounds ` : Number of rounds to process the input for refinement. (num rounds == num of MoA layers - 1)
124
- - ` --num_proc ` : Number of processes to run in parallel for faster execution.
125
- - ` --multi_turn ` : Boolean to toggle multi-turn interaction capability.
124
+ - ` --num-proc ` : Number of processes to run in parallel for faster execution.
125
+ - ` --multi-turn ` : Boolean to toggle multi-turn interaction capability.
126
+
127
+ Specify ` --reference-models ` multiple times to use multiple models as references. For example:
128
+
129
+ ``` bash
130
+ # Specify multiple reference models
131
+ python bot.py --reference-models " mistralai/Mixtral-8x22B-Instruct-v0.1" --reference-models " Qwen/Qwen2-72B-Instruct"
132
+ ```
133
+
126
134
127
135
## Evaluation
128
136
You can’t perform that action at this time.
0 commit comments