fix(runtime): 去掉--reasoning-parser qwen3——基础镜像不识别

竞赛平台日志:
  api_server.py: error: unrecognized arguments: --reasoning-parser qwen3

cli_args.py定义了--reasoning-parser但部署到的vllm路径可能不是
python3 -m vllm运行时实际使用的路径。去掉此参数让服务启动成功。
tool-call-parser qwen3_coder通过patch_vllm_tool_parser.py动态注册,不受影响。
This commit is contained in:
Claude
2026-08-11 10:14:55 +00:00
parent 4702505bf9
commit 075b5fa18e

View File

@@ -25,8 +25,6 @@ command:
- --enable-auto-tool-choice
- --tool-call-parser
- qwen3_coder
- --reasoning-parser
- qwen3
- --enable-prefix-caching
- --max-seq-len-to-capture
- '8192'