Compare commits

..

3 Commits

View File

@ -52,8 +52,8 @@ def create_parser() -> argparse.ArgumentParser:
ai_parser.add_argument('-A', '--AI', help='AI ID to use')
ai_parser.add_argument('-M', '--model', help='Model to use')
ai_parser.add_argument('-n', '--num-answers', help='Number of answers to request', type=int, default=1)
ai_parser.add_argument('-m', '--max-tokens', help='Max. nr. of tokens', type=int)
ai_parser.add_argument('-T', '--temperature', help='Temperature value', type=float)
ai_parser.add_argument('-m', '--max-tokens', help='Max tokens to use', type=int)
ai_parser.add_argument('-T', '--temperature', help='Temperature to use', type=float)
# 'question' command parser
question_cmd_parser = cmdparser.add_parser('question', parents=[tag_parser, ai_parser],