Skip to content
Open
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
2 changes: 1 addition & 1 deletion backend/consts/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docker/docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion frontend/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/nexent/charts/nexent-common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/nexent/charts/nexent-web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resources:
cpu: 500m

config:
marketBackend: "https://market.nexent.tech"
marketBackend: "http://60.204.251.153:8010"
modelEngine:
enabled: "false"

Expand Down
Loading