From 7d7f93d0938b657cba13c7f67d9ce5ffdeaeedb5 Mon Sep 17 00:00:00 2001 From: yetone Date: Mon, 10 Mar 2025 16:32:17 +0800 Subject: [PATCH] feat: upgrade rag service (#1548) --- Makefile | 2 +- lua/avante/rag_service.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 75e81c8..f9be9a8 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ BUILD_DIR := build BUILD_FROM_SOURCE ?= false TARGET_LIBRARY ?= all -RAG_SERVICE_VERSION ?= 0.0.7 +RAG_SERVICE_VERSION ?= 0.0.8 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 d40f0d1..253749d 100644 --- a/lua/avante/rag_service.lua +++ b/lua/avante/rag_service.lua @@ -8,7 +8,7 @@ local M = {} local container_name = "avante-rag-service" local service_path = "/tmp/" .. container_name -function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.7" end +function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.8" end function M.get_rag_service_port() return 20250 end