Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.6.0-rc.1 #448

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions deployment/kustomizations/base/cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ data:
WREN_UI_ENDPOINT: http://wren-ui-svc:3000

#Release version used by wren ui https://github.com/Canner/WrenAI/blob/main/docker/docker-compose.yaml#L85-L88
WREN_PRODUCT_VERSION: "0.5.0"
WREN_ENGINE_VERSION: "0.5.1"
WREN_AI_SERVICE_VERSION: "0.5.7"
WREN_UI_VERSION: "0.8.0"
WREN_PRODUCT_VERSION: "0.6.0-rc.1"
WREN_ENGINE_VERSION: "0.5.2"
WREN_AI_SERVICE_VERSION: "0.6.2"
WREN_UI_VERSION: "0.9.0"

# OpenAI
GENERATION_MODEL: "gpt-3.5-turbo"
Expand Down
8 changes: 4 additions & 4 deletions deployment/kustomizations/patches/cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
WREN_AI_SERVICE_PORT: "5555"

#Release version used by wren ui https://github.com/Canner/WrenAI/blob/main/docker/docker-compose.yaml#L85-L88
WREN_PRODUCT_VERSION: "0.5.0"
WREN_PRODUCT_VERSION: "0.6.0-rc.1"
#fix:
WREN_ENGINE_VERSION: "0.5.1"
WREN_AI_SERVICE_VERSION: "0.5.7"
WREN_ENGINE_VERSION: "0.5.2"
WREN_AI_SERVICE_VERSION: "0.6.2"
#fix:
WREN_UI_VERSION: "0.8.0"
WREN_UI_VERSION: "0.9.0"

# OpenAI
GENERATION_MODEL: "gpt-3.5-turbo"
Expand Down
10 changes: 5 additions & 5 deletions docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ GENERATION_MODEL=gpt-3.5-turbo # gpt-3.5-turbo, gpt-4o, gpt-4-turbo

# version
# CHANGE THIS TO THE LATEST VERSION
WREN_PRODUCT_VERSION=0.5.0
WREN_ENGINE_VERSION=0.5.1
WREN_AI_SERVICE_VERSION=0.5.7
WREN_UI_VERSION=0.8.0
IBIS_SERVER_VERSION=0.5.1
WREN_PRODUCT_VERSION=0.6.0-rc.1
WREN_ENGINE_VERSION=0.5.2
WREN_AI_SERVICE_VERSION=0.6.2
WREN_UI_VERSION=0.9.0
IBIS_SERVER_VERSION=0.5.2
WREN_BOOTSTRAP_VERSION=0.1.4

# AI service related env variables
Expand Down
4 changes: 2 additions & 2 deletions wren-launcher/utils/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

const (
// please change the version when the version is updated
WREN_PRODUCT_VERSION string = "0.5.0"
WREN_PRODUCT_VERSION string = "0.6.0-rc.1"
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"

Expand All @@ -36,7 +36,7 @@ func replaceEnvFileContent(content string, projectDir string, openaiApiKey strin
// rplace PROJECT_DIR
reg := regexp.MustCompile(`PROJECT_DIR=(.*)`)
str := reg.ReplaceAllString(content, "PROJECT_DIR="+projectDir)

// replace OPENAI_API_KEY
reg = regexp.MustCompile(`OPENAI_API_KEY=sk-(.*)`)
str = reg.ReplaceAllString(content, "OPENAI_API_KEY="+openaiApiKey)
Expand Down
Loading