Skip to content

Commit

Permalink
--max_thread_num -> '--max-thread-num'
Browse files Browse the repository at this point in the history
  • Loading branch information
shaoyijia committed Apr 26, 2024
1 parent 100b861 commit 7487b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/run_storm_wiki_gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def main(args):
# global arguments
parser.add_argument('--output-dir', type=str, default='./results/gpt',
help='Directory to store the outputs.')
parser.add_argument('--max_thread_num', type=int, default=3,
parser.add_argument('--max-thread-num', type=int, default=3,
help='Maximum number of threads to use. The information seeking part and the article generation'
'part can speed up by using multiple threads. Consider reducing it if keep getting '
'"Exceed rate limit" error when calling LM API.')
Expand Down
2 changes: 1 addition & 1 deletion examples/run_storm_wiki_mistral.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main(args):
help='Port of the VLLM server.')
parser.add_argument('--output-dir', type=str, default='./results/mistral_7b',
help='Directory to store the outputs.')
parser.add_argument('--max_thread_num', type=int, default=3,
parser.add_argument('--max-thread-num', type=int, default=3,
help='Maximum number of threads to use. The information seeking part and the article generation'
'part can speed up by using multiple threads. Consider reducing it if keep getting '
'"Exceed rate limit" error when calling LM API.')
Expand Down

0 comments on commit 7487b90

Please sign in to comment.