We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ba8de commit a6b5bafCopy full SHA for a6b5baf
vllm/entrypoints/openai/cli_args.py
@@ -227,7 +227,11 @@ def make_arg_parser(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
227
"--expand-tools-even-if-tool-choice-none",
228
action="store_true",
229
default=False,
230
- help="Include tool definitions in prompt when tool_choice='none'")
+ help="[DEPRECATED] Include tool definitions in prompts even when tool_choice='none'. "
231
+ "This is a transitional option that will be removed in v0.10.0. "
232
+ "In v0.10.0, tool definitions will always be included regardless of "
233
+ "tool_choice setting. Use this flag now to test the new behavior "
234
+ "before the breaking change.")
235
236
valid_tool_parsers = ToolParserManager.tool_parsers.keys()
237
parser.add_argument(
0 commit comments