Skip to content

Commit

Permalink
Fix merge bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ezliu committed Jul 23, 2024
1 parent 0446488 commit cabd53b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vllm/entrypoints/openai/cli_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,14 @@ def make_arg_parser(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
help="When --max-logprobs is specified, represents single tokens as"
"strings of the form 'token_id:{token_id}' so that tokens that"
"are not JSON-encodable can be identified.")

parser = AsyncEngineArgs.add_cli_args(parser)

parser.add_argument('--max-log-len',
type=int,
default=None,
help='Max number of prompt characters or prompt '
'ID numbers being printed in log.'
'\n\nDefault: Unlimited')

parser = AsyncEngineArgs.add_cli_args(parser)
return parser


Expand Down

0 comments on commit cabd53b

Please sign in to comment.