Merge pull request #44 from sirius0xdev/fix/vllm-version-and-parser

fix: pin vLLM to v0.9.1 and use pythonic tool call parser
This commit is contained in:
sirius0xdev 2026-04-20 12:28:51 -04:00 committed by GitHub
commit bca7bdec5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ spec:
effect: "NoSchedule" effect: "NoSchedule"
containers: containers:
- name: vllm-brain - name: vllm-brain
image: vllm/vllm-openai:latest image: vllm/vllm-openai:v0.9.1
command: ["python3", "-m", "vllm.entrypoints.openai.api_server"] command: ["python3", "-m", "vllm.entrypoints.openai.api_server"]
env: env:
- name: HF_TOKEN - name: HF_TOKEN
@ -41,7 +41,7 @@ spec:
- --enable-auto-tool-choice - --enable-auto-tool-choice
- --trust-remote-code - --trust-remote-code
- --dtype=auto - --dtype=auto
- --tool-call-parser=qwen3_coder - --tool-call-parser=pythonic
- --reasoning-parser=qwen3 - --reasoning-parser=qwen3
- --enable-prefix-caching - --enable-prefix-caching
- --enable-chunked-prefill - --enable-chunked-prefill

View file

@ -24,7 +24,7 @@ spec:
effect: "NoSchedule" effect: "NoSchedule"
containers: containers:
- name: vllm-brain-l4 - name: vllm-brain-l4
image: vllm/vllm-openai:latest image: vllm/vllm-openai:v0.9.1
command: ["python3", "-m", "vllm.entrypoints.openai.api_server"] command: ["python3", "-m", "vllm.entrypoints.openai.api_server"]
env: env:
- name: HF_TOKEN - name: HF_TOKEN
@ -39,7 +39,7 @@ spec:
- --enable-auto-tool-choice - --enable-auto-tool-choice
- --trust-remote-code - --trust-remote-code
- --dtype=auto - --dtype=auto
- --tool-call-parser=qwen3_coder - --tool-call-parser=pythonic
- --enable-prefix-caching - --enable-prefix-caching
ports: ports:
- containerPort: 8000 - containerPort: 8000