From 1097f1dfaeea39bd1f5241d6492012d452940d84 Mon Sep 17 00:00:00 2001 From: yetone Date: Thu, 27 Feb 2025 11:54:38 +0800 Subject: [PATCH] feat: update rag service image (#1415) --- Makefile | 2 +- lua/avante/rag_service.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9a6905b..e6350ae 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ BUILD_DIR := build BUILD_FROM_SOURCE ?= false TARGET_LIBRARY ?= all -RAG_SERVICE_VERSION ?= 0.0.5 +RAG_SERVICE_VERSION ?= 0.0.6 RAG_SERVICE_IMAGE := quay.io/yetoneful/avante-rag-service:$(RAG_SERVICE_VERSION) all: luajit diff --git a/lua/avante/rag_service.lua b/lua/avante/rag_service.lua index 4205258..cbec6ec 100644 --- a/lua/avante/rag_service.lua +++ b/lua/avante/rag_service.lua @@ -6,7 +6,7 @@ local M = {} local container_name = "avante-rag-service" -function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.5" end +function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.6" end function M.get_rag_service_port() return 20250 end