diff --git a/backend/consts/const.py b/backend/consts/const.py index 5bfd012ff..82ead68cf 100644 --- a/backend/consts/const.py +++ b/backend/consts/const.py @@ -326,7 +326,7 @@ class VectorDatabaseType(str, Enum): MODEL_ENGINE_ENABLED = os.getenv("MODEL_ENGINE_ENABLED") # APP Version -APP_VERSION = "v1.8.1" +APP_VERSION = "v2.0.1" # Container Platform Configuration IS_DEPLOYED_BY_KUBERNETES = os.getenv("IS_DEPLOYED_BY_KUBERNETES", "false").lower() == "true" diff --git a/docker/.env.example b/docker/.env.example index d03cf6113..b0ba46ef4 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -155,4 +155,4 @@ LLM_SLOW_REQUEST_THRESHOLD_SECONDS=5.0 LLM_SLOW_TOKEN_RATE_THRESHOLD=10.0 # Market Backend Address -MARKET_BACKEND=https://market.nexent.tech +MARKET_BACKEND=http://60.204.251.153:8010 diff --git a/docker/docker-compose.prod.yml b/docker/docker-compose.prod.yml index 8eef651ae..6db803215 100644 --- a/docker/docker-compose.prod.yml +++ b/docker/docker-compose.prod.yml @@ -188,7 +188,7 @@ services: - WS_BACKEND=ws://nexent-runtime:5014 - RUNTIME_HTTP_BACKEND=http://nexent-runtime:5014 - MINIO_ENDPOINT=http://nexent-minio:9000 - - MARKET_BACKEND=https://market.nexent.tech + - MARKET_BACKEND=http://60.204.251.153:8010 logging: driver: "json-file" options: diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 321f29665..4addc680b 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -205,7 +205,7 @@ services: - WS_BACKEND=ws://nexent-runtime:5014 - RUNTIME_HTTP_BACKEND=http://nexent-runtime:5014 - MINIO_ENDPOINT=http://nexent-minio:9000 - - MARKET_BACKEND=https://market.nexent.tech + - MARKET_BACKEND=http://60.204.251.153:8010 - MODEL_ENGINE_ENABLED=${MODEL_ENGINE_ENABLED:-false} logging: driver: "json-file" diff --git a/frontend/server.js b/frontend/server.js index 05f098402..06cbf7016 100644 --- a/frontend/server.js +++ b/frontend/server.js @@ -28,7 +28,7 @@ const RUNTIME_HTTP_BACKEND = process.env.RUNTIME_HTTP_BACKEND || "http://localhost:5014"; // runtime const MINIO_BACKEND = process.env.MINIO_ENDPOINT || "http://localhost:9010"; const MARKET_BACKEND = - process.env.MARKET_BACKEND || "https://market.nexent.tech"; // market + process.env.MARKET_BACKEND || "http://60.204.251.153:8010"; // market const PORT = 3000; const proxy = createProxyServer(); diff --git a/k8s/helm/nexent/charts/nexent-common/values.yaml b/k8s/helm/nexent/charts/nexent-common/values.yaml index 2a2083aea..b8f253a47 100644 --- a/k8s/helm/nexent/charts/nexent-common/values.yaml +++ b/k8s/helm/nexent/charts/nexent-common/values.yaml @@ -41,7 +41,7 @@ config: skipProxy: "true" umask: "0022" isDeployedByKubernetes: "true" - marketBackend: "https://market.nexent.tech" + marketBackend: "http://60.204.251.153:8010" modelEngine: enabled: "false" voiceService: diff --git a/k8s/helm/nexent/charts/nexent-web/values.yaml b/k8s/helm/nexent/charts/nexent-web/values.yaml index 4f1acb205..74337791c 100644 --- a/k8s/helm/nexent/charts/nexent-web/values.yaml +++ b/k8s/helm/nexent/charts/nexent-web/values.yaml @@ -16,7 +16,7 @@ resources: cpu: 500m config: - marketBackend: "https://market.nexent.tech" + marketBackend: "http://60.204.251.153:8010" modelEngine: enabled: "false"