diff --git a/Makefile b/Makefile index e6350ae..75e81c8 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ BUILD_DIR := build BUILD_FROM_SOURCE ?= false TARGET_LIBRARY ?= all -RAG_SERVICE_VERSION ?= 0.0.6 +RAG_SERVICE_VERSION ?= 0.0.7 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 962b41e..d94bebd 100644 --- a/lua/avante/rag_service.lua +++ b/lua/avante/rag_service.lua @@ -2,14 +2,13 @@ local curl = require("plenary.curl") local Path = require("plenary.path") local Config = require("avante.config") local Utils = require("avante.utils") -local Config = require("avante.config") 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.6" end +function M.get_rag_service_image() return "quay.io/yetoneful/avante-rag-service:0.0.7" end function M.get_rag_service_port() return 20250 end