Skip to content

Commit e395bcd

Browse files
authored
πŸ› Fix agent market disconnected
πŸ› Fix agent market disconnected
2 parents 1be80e9 + fe7dd96 commit e395bcd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

β€Žbackend/consts/const.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ class VectorDatabaseType(str, Enum):
326326
MODEL_ENGINE_ENABLED = os.getenv("MODEL_ENGINE_ENABLED")
327327

328328
# APP Version
329-
APP_VERSION = "v1.8.1"
329+
APP_VERSION = "v2.0.1"
330330

331331
# Container Platform Configuration
332332
IS_DEPLOYED_BY_KUBERNETES = os.getenv("IS_DEPLOYED_BY_KUBERNETES", "false").lower() == "true"

β€Ždocker/.env.exampleβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,4 @@ LLM_SLOW_REQUEST_THRESHOLD_SECONDS=5.0
155155
LLM_SLOW_TOKEN_RATE_THRESHOLD=10.0
156156

157157
# Market Backend Address
158-
MARKET_BACKEND=https://market.nexent.tech
158+
MARKET_BACKEND=http://60.204.251.153:8010

β€Ždocker/docker-compose.prod.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ services:
188188
- WS_BACKEND=ws://nexent-runtime:5014
189189
- RUNTIME_HTTP_BACKEND=http://nexent-runtime:5014
190190
- MINIO_ENDPOINT=http://nexent-minio:9000
191-
- MARKET_BACKEND=https://market.nexent.tech
191+
- MARKET_BACKEND=http://60.204.251.153:8010
192192
logging:
193193
driver: "json-file"
194194
options:

β€Ždocker/docker-compose.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ services:
205205
- WS_BACKEND=ws://nexent-runtime:5014
206206
- RUNTIME_HTTP_BACKEND=http://nexent-runtime:5014
207207
- MINIO_ENDPOINT=http://nexent-minio:9000
208-
- MARKET_BACKEND=https://market.nexent.tech
208+
- MARKET_BACKEND=http://60.204.251.153:8010
209209
- MODEL_ENGINE_ENABLED=${MODEL_ENGINE_ENABLED:-false}
210210
logging:
211211
driver: "json-file"

β€Žfrontend/server.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const RUNTIME_HTTP_BACKEND =
2828
process.env.RUNTIME_HTTP_BACKEND || "http://localhost:5014"; // runtime
2929
const MINIO_BACKEND = process.env.MINIO_ENDPOINT || "http://localhost:9010";
3030
const MARKET_BACKEND =
31-
process.env.MARKET_BACKEND || "https://market.nexent.tech"; // market
31+
process.env.MARKET_BACKEND || "http://60.204.251.153:8010"; // market
3232
const PORT = 3000;
3333

3434
const proxy = createProxyServer();

β€Žk8s/helm/nexent/charts/nexent-common/values.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ config:
4141
skipProxy: "true"
4242
umask: "0022"
4343
isDeployedByKubernetes: "true"
44-
marketBackend: "https://market.nexent.tech"
44+
marketBackend: "http://60.204.251.153:8010"
4545
modelEngine:
4646
enabled: "false"
4747
voiceService:

β€Žk8s/helm/nexent/charts/nexent-web/values.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resources:
1616
cpu: 500m
1717

1818
config:
19-
marketBackend: "https://market.nexent.tech"
19+
marketBackend: "http://60.204.251.153:8010"
2020
modelEngine:
2121
enabled: "false"
2222

0 commit comments

Comments
Β (0)