Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 4b58358

Browse files
committed
Try using Qwen/Qwen2.5-Coder-1.5B-Instruct
Signed-off-by: Radoslav Dimitrov <[email protected]>
1 parent 39b8a6b commit 4b58358

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
docker build -f Dockerfile.cpu -t vllm-cpu-env --shm-size=4g .
154154
docker run -d --name vllm \
155155
--network="host" \
156-
vllm-cpu-env --model Qwen/Qwen2.5-Coder-0.5B-Instruct
156+
vllm-cpu-env --model Qwen/Qwen2.5-Coder-1.5B-Instruct
157157
158158
- name: Verify the vllm container is running
159159
run: |
@@ -169,7 +169,7 @@ jobs:
169169
170170
echo -e "\nVerify the completions endpoint works\n"
171171
curl http://localhost:8000/v1/completions -H "Content-Type: application/json" -d '{
172-
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
172+
"model": "Qwen/Qwen2.5-Coder-1.5B-Instruct",
173173
"prompt": ["How to make pizza"],
174174
"max_tokens": 100,
175175
"temperature": 0
@@ -179,7 +179,7 @@ jobs:
179179
curl -X POST http://localhost:8000/v1/chat/completions \
180180
-H "Content-Type: application/json" \
181181
-d '{
182-
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
182+
"model": "Qwen/Qwen2.5-Coder-1.5B-Instruct",
183183
"messages": [
184184
{"role": "system", "content": "You are a coding assistant."},
185185
{"role": "user", "content": "Hello"}

tests/integration/testcases.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ testcases:
160160
"role":"user"
161161
}
162162
],
163-
"model":"Qwen/Qwen2.5-Coder-0.5B-Instruct",
163+
"model":"Qwen/Qwen2.5-Coder-1.5B-Instruct",
164164
"stream":true,
165165
"temperature":0
166166
}
@@ -173,7 +173,7 @@ testcases:
173173
url: http://127.0.0.1:8989/vllm/completions
174174
data: |
175175
{
176-
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
176+
"model": "Qwen/Qwen2.5-Coder-1.5B-Instruct",
177177
"max_tokens": 4096,
178178
"temperature": 0,
179179
"stream": true,

0 commit comments

Comments
 (0)