Skip to content

Commit 3239ec3

Browse files
authored
Update vLLM version to v0.10.0 (#2205)
Signed-off-by: CICD-at-OPEA <CICD@opea.dev> Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent b8ba05a commit 3239ec3

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/daily-update-vllm-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
latest_vllm_ver=$(curl -s "https://api.github.com/repos/${{ matrix.repo_name }}/tags" | jq '.[0].name' -)
6060
latest_vllm_ver=$(echo "$latest_vllm_ver" | sed 's/"//g')
6161
echo "latest_vllm_ver=${latest_vllm_ver}" >> "$GITHUB_ENV"
62-
find . -type f -name "*.sh" -exec sed -i "s/${{ matrix.ver_name }}=.*/${{ matrix.ver_name }}=${latest_vllm_ver}/" {} \;
62+
find . -type f \( -name "*.sh" -o -name "*.md" \) -exec sed -i "s/${{ matrix.ver_name }}=.*/${{ matrix.ver_name }}=${latest_vllm_ver}/" {} \;
6363
6464
- name: Commit changes
6565
run: |

ChatQnA/docker_compose/amd/cpu/epyc/README_faqgen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ First of all, you need to build Docker Images locally. This step can be ignored
6565
```bash
6666
git clone https://github.com/vllm-project/vllm.git
6767
cd ./vllm/
68-
VLLM_VER="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
68+
VLLM_VER=v0.10.0
6969
git checkout ${VLLM_VER}
7070
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile.cpu -t opea/vllm:latest --shm-size=128g .
7171
```

ChatQnA/docker_compose/intel/cpu/xeon/README_faqgen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ First of all, you need to build Docker Images locally. This step can be ignored
6565
```bash
6666
git clone https://github.com/vllm-project/vllm.git
6767
cd ./vllm/
68-
VLLM_VER="$(git describe --tags "$(git rev-list --tags --max-count=1)" )"
68+
VLLM_VER=v0.10.0
6969
git checkout ${VLLM_VER}
7070
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -f Dockerfile.cpu -t opea/vllm:latest --shm-size=128g .
7171
```

DocSum/tests/test_compose_on_epyc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function build_docker_images() {
3939
popd && sleep 1s
4040

4141
git clone https://github.com/vllm-project/vllm.git && cd vllm
42-
VLLM_VER=v0.9.0.1
42+
VLLM_VER=v0.10.0
4343
echo "Check out vLLM tag ${VLLM_VER}"
4444
git checkout ${VLLM_VER} &>/dev/null
4545
VLLM_REQ_FILE="requirements/cpu.txt"

FinanceAgent/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ cd $WORKDIR
9898
git clone https://github.com/HabanaAI/vllm-fork.git
9999
# get the latest release tag of vllm gaudi
100100
cd vllm-fork
101-
VLLM_VER=$(git describe --tags "$(git rev-list --tags --max-count=1)")
101+
VLLM_VER=v0.10.0
102102
echo "Check out vLLM tag ${VLLM_VER}"
103103
git checkout ${VLLM_VER}
104104
docker build --no-cache -f Dockerfile.hpu -t opea/vllm-gaudi:latest --shm-size=128g . --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy

GraphRAG/docker_compose/intel/cpu/xeon/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ git clone https://github.com/opea-project/GenAIComps.git
3131

3232
# vllm-service
3333
cd vllm/
34-
VLLM_VER=v0.8.3
34+
VLLM_VER=v0.10.0
3535
git checkout "${VLLM_VER}"
3636
docker build --no-cache -f docker/Dockerfile.cpu -t opea/vllm-cpu:"${TAG:-latest}" --shm-size=128g .
3737

0 commit comments

Comments
 (0)