Skip to content

Commit

Permalink
[Misc] fixed 'required' is an invalid argument for positionals (vllm-…
Browse files Browse the repository at this point in the history
…project#13948)

Signed-off-by: chaunceyjiang <[email protected]>
  • Loading branch information
chaunceyjiang authored Feb 27, 2025
1 parent a7f3731 commit 10c3b8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def dse_qwen2_vl(inp: dict):
parser = argparse.ArgumentParser(
"Script to call a specified VLM through the API. Make sure to serve "
"the model with --task embed before running this.")
parser.add_argument("model",
parser.add_argument("--model",
type=str,
choices=["vlm2vec", "dse_qwen2_vl"],
required=True,
Expand Down

0 comments on commit 10c3b8c

Please sign in to comment.