Skip to content

Commit

Permalink
Add choices to --orca-format flag
Browse files Browse the repository at this point in the history
Signed-off-by: Kunjan Patel <[email protected]>
  • Loading branch information
coolkp committed Nov 20, 2024
1 parent a0ceeba commit 6507620
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vllm/entrypoints/openai/cli_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,11 @@ def make_arg_parser(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
"for the specified model")
parser.add_argument(
"--orca-format",
type=nullable_str,
type=str,
default="",
choices=["BIN", "TEXT", "JSON"],
help='Enable ORCA metrics reporting in response header'
'select one or many of valid formats from [BIN, TEXT, JSON]',
'select one of valid formats from [BIN, TEXT, JSON]',
)
parser.add_argument(
'--chat-template-content-format',
Expand Down

0 comments on commit 6507620

Please sign in to comment.