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

Commit f0127af

Browse files
committed
Revert "Use Qwen/Qwen2.5-Coder-0.5B"
This reverts commit 32b2d8c.
1 parent 123df46 commit f0127af

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
@@ -189,7 +189,7 @@ jobs:
189189
docker build -f Dockerfile.cpu -t vllm-cpu-env --shm-size=4g .
190190
docker run -d --name vllm \
191191
--network="host" \
192-
vllm-cpu-env --model Qwen/Qwen2.5-Coder-0.5B
192+
vllm-cpu-env --model Qwen/Qwen2.5-Coder-0.5B-Instruct
193193
194194
- name: Verify the vllm container is running
195195
run: |
@@ -205,7 +205,7 @@ jobs:
205205
206206
echo -e "\nVerify the completions endpoint works\n"
207207
curl http://localhost:8000/v1/completions -H "Content-Type: application/json" -d '{
208-
"model": "Qwen/Qwen2.5-Coder-0.5B",
208+
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
209209
"prompt": ["How to make pizza"],
210210
"max_tokens": 100,
211211
"temperature": 0
@@ -215,7 +215,7 @@ jobs:
215215
curl -X POST http://localhost:8000/v1/chat/completions \
216216
-H "Content-Type: application/json" \
217217
-d '{
218-
"model": "Qwen/Qwen2.5-Coder-0.5B",
218+
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
219219
"messages": [
220220
{"role": "system", "content": "You are a coding assistant."},
221221
{"role": "user", "content": "Hello"}

tests/integration/testcases.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ testcases:
161161
"role":"user"
162162
}
163163
],
164-
"model":"Qwen/Qwen2.5-Coder-0.5B",
164+
"model":"Qwen/Qwen2.5-Coder-0.5B-Instruct",
165165
"stream":true,
166166
"temperature":0
167167
}
@@ -174,7 +174,7 @@ testcases:
174174
url: http://127.0.0.1:8989/vllm/completions
175175
data: |
176176
{
177-
"model": "Qwen/Qwen2.5-Coder-0.5B",
177+
"model": "Qwen/Qwen2.5-Coder-0.5B-Instruct",
178178
"max_tokens": 4096,
179179
"temperature": 0,
180180
"stream": true,

0 commit comments

Comments
 (0)