From da2d1ad89d3d8a0ffb85eb5d6d6b9919e646e741 Mon Sep 17 00:00:00 2001 From: Alvaro Moran <6949769+tengomucho@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:04:27 +0200 Subject: [PATCH] chore(tgi): update TGI base image (#75) Use a proper tag instead of a SHA1 --- .github/workflows/tpu-tgi-release.yml | 4 ++-- Makefile | 2 +- text-generation-inference/server/Makefile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tpu-tgi-release.yml b/.github/workflows/tpu-tgi-release.yml index 46c6255d..91e5f101 100644 --- a/.github/workflows/tpu-tgi-release.yml +++ b/.github/workflows/tpu-tgi-release.yml @@ -74,7 +74,7 @@ jobs: labels: ${{ steps.meta.outputs.labels }} build-args: | VERSION=${{ steps.version.outputs.version }} - TGI_VERSION=5bc3d65dd32ba1f979540caeccbf3dd8798dd9df + TGI_VERSION=v2.0.3 - name: Generate artifact attestation for TGI @@ -95,7 +95,7 @@ jobs: labels: ${{ steps.meta-ie.outputs.labels }} build-args: | VERSION=${{ steps.version.outputs.version }} - TGI_VERSION=5bc3d65dd32ba1f979540caeccbf3dd8798dd9df + TGI_VERSION=v2.0.3 target: inference-endpoint diff --git a/Makefile b/Makefile index 61fac2c3..026b309c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ REAL_CLONE_URL = $(if $(CLONE_URL),$(CLONE_URL),$(DEFAULT_CLONE_URL)) .PHONY: build_dist style style_check clean -TGI_VERSION ?= 5bc3d65dd32ba1f979540caeccbf3dd8798dd9df +TGI_VERSION ?= v2.0.3 rwildcard=$(wildcard $1) $(foreach d,$1,$(call rwildcard,$(addsuffix /$(notdir $d),$(wildcard $(dir $d)*)))) diff --git a/text-generation-inference/server/Makefile b/text-generation-inference/server/Makefile index 7be0b3e4..9a2d3624 100644 --- a/text-generation-inference/server/Makefile +++ b/text-generation-inference/server/Makefile @@ -2,7 +2,7 @@ pkg_name := text_generation_server BUILDDIR ?= $(CURDIR)/build VERSION ?= 0.0.1 -TGI_VERSION ?= v2.0.1 +TGI_VERSION ?= v2.0.3 mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) mkfile_dir := $(dir $(mkfile_path)) pkg_dir := $(BUILDDIR)/$(pkg_name)