diff --git a/chatmastermind/main.py b/chatmastermind/main.py index 1c937d4..ad68cba 100755 --- a/chatmastermind/main.py +++ b/chatmastermind/main.py @@ -82,7 +82,7 @@ def create_parser() -> argparse.ArgumentParser: parser.add_argument('-m', '--max-tokens', help='Max tokens to use', type=int) parser.add_argument('-T', '--temperature', help='Temperature to use', type=float) parser.add_argument('-M', '--model', help='Model to use') - parser.add_argument('-n', '--number', help='Number of answers to produce', type=int, default=3) + parser.add_argument('-n', '--number', help='Number of answers to produce', type=int, default=1) parser.add_argument('-s', '--source', nargs='*', help='Source add content of a file to the query') parser.add_argument('-S', '--only-source-code', help='Print only source code', action='store_true') tags_arg = parser.add_argument('-t', '--tags', nargs='*', help='List of tag names', metavar='TAGS')