add function call parser for DeepSeek V3 (#5224)

This commit is contained in:
Yi Zhou
2025-04-21 08:38:08 +08:00
committed by GitHub
parent 8b39274e34
commit fac17acf08
4 changed files with 119 additions and 1 deletions

View File

@@ -1087,7 +1087,7 @@ class ServerArgs:
parser.add_argument(
"--tool-call-parser",
type=str,
choices=["qwen25", "mistral", "llama3"],
choices=["qwen25", "mistral", "llama3", "deepseekv3"],
default=ServerArgs.tool_call_parser,
help="Specify the parser for handling tool-call interactions. Options include: 'qwen25', 'mistral', and 'llama3'.",
)