Skip to content

Commit 3b8e3bb

Browse files
committed
Fix errors in cli parameter description in README
1 parent bd40651 commit 3b8e3bb

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,21 @@ The CLI will prompt you to input instructions interactively:
116116

117117
You can configure the demo by specifying the following parameters:
118118

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.
121121
- `--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.
123123
- `--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+
126134

127135
## Evaluation
128136

0 commit comments

Comments
 (0)