From 99009f4ce01de28b8c3b7da86559869f65459049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?william=20chang=28=E5=BC=B5=E4=BB=B2=E5=A8=81=29?= Date: Thu, 9 Jan 2025 18:35:04 +0800 Subject: [PATCH] release 0.14.0 (#1098) --- docker/.env.example | 2 +- wren-launcher/utils/docker.go | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/.env.example b/docker/.env.example index 35d9bd754..e0f7406da 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -24,7 +24,7 @@ QDRANT_API_KEY= # version # CHANGE THIS TO THE LATEST VERSION -WREN_PRODUCT_VERSION=0.14.0-rc.1 +WREN_PRODUCT_VERSION=0.14.0 WREN_ENGINE_VERSION=0.13.1 WREN_AI_SERVICE_VERSION=0.14.0 IBIS_SERVER_VERSION=0.13.1 diff --git a/wren-launcher/utils/docker.go b/wren-launcher/utils/docker.go index a46bf2e29..3497fe6ac 100644 --- a/wren-launcher/utils/docker.go +++ b/wren-launcher/utils/docker.go @@ -24,7 +24,7 @@ import ( const ( // please change the version when the version is updated - WREN_PRODUCT_VERSION string = "0.14.0-rc.1" + WREN_PRODUCT_VERSION string = "0.14.0" DOCKER_COMPOSE_YAML_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/docker-compose.yaml" DOCKER_COMPOSE_ENV_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/.env.example" AI_SERVICE_CONFIG_URL string = "https://raw.githubusercontent.com/Canner/WrenAI/" + WREN_PRODUCT_VERSION + "/docker/config.example.yaml" @@ -328,7 +328,8 @@ func getConfigFilePath(projectDir string) string { // Supports both default and custom LLM provider configurations. // // Example: -// err := RunDockerCompose("wren", "/path/to/project", "openai") +// +// err := RunDockerCompose("wren", "/path/to/project", "openai") func RunDockerCompose(projectName string, projectDir string, llmProvider string) error { ctx := context.Background() composeFilePath := path.Join(projectDir, "docker-compose.yaml")