88# which can be used to connect to the server from the Internet. It must be specified in the EXTERNAL_HOST_IP variable.
99# If the server is used only on the internal network or has a direct external address,
1010# specify it in HOST_IP and in EXTERNAL_HOST_IP.
11- export HOST_IP=' '
12- export EXTERNAL_HOST_IP=' '
11+ export HOST_IP=${ip_address}
12+ export EXTERNAL_HOST_IP=${ip_address}
1313
1414# ## Model ID
1515export CODETRANS_LLM_MODEL_ID=" Qwen/Qwen2.5-Coder-7B-Instruct"
1616
1717# ## The port of the TGI service. On this port, the TGI service will accept connections
18- export CODETRANS_TGI_SERVICE_PORT=18156
18+ export CODETRANS_TGI_SERVICE_PORT=8008
1919
2020# ## The endpoint of the TGI service to which requests to this service will be sent (formed from previously set variables)
2121export CODETRANS_TGI_LLM_ENDPOINT=" http://${HOST_IP} :${CODETRANS_TGI_SERVICE_PORT} "
@@ -24,7 +24,7 @@ export CODETRANS_TGI_LLM_ENDPOINT="http://${HOST_IP}:${CODETRANS_TGI_SERVICE_POR
2424export CODETRANS_HUGGINGFACEHUB_API_TOKEN=${HUGGINGFACEHUB_API_TOKEN}
2525
2626# ## The port of the LLM service. On this port, the LLM service will accept connections
27- export CODETRANS_LLM_SERVICE_PORT=18157
27+ export CODETRANS_LLM_SERVICE_PORT=9000
2828
2929# ## The IP address or domain name of the server for CodeTrans MegaService
3030export CODETRANS_MEGA_SERVICE_HOST_IP=${HOST_IP}
@@ -36,7 +36,7 @@ export CODETRANS_LLM_SERVICE_HOST_IP=${HOST_IP}
3636export CODETRANS_FRONTEND_SERVICE_IP=${HOST_IP}
3737
3838# ## The port of the frontend service
39- export CODETRANS_FRONTEND_SERVICE_PORT=18155
39+ export CODETRANS_FRONTEND_SERVICE_PORT=5173
4040
4141# ## Name of GenAI service for route requests to application
4242export CODETRANS_BACKEND_SERVICE_NAME=codetrans
@@ -45,10 +45,10 @@ export CODETRANS_BACKEND_SERVICE_NAME=codetrans
4545export CODETRANS_BACKEND_SERVICE_IP=${HOST_IP}
4646
4747# ## The port of the backend service
48- export CODETRANS_BACKEND_SERVICE_PORT=18154
48+ export CODETRANS_BACKEND_SERVICE_PORT=7777
4949
5050# ## The port of the Nginx reverse proxy for application
51- export CODETRANS_NGINX_PORT=18153
51+ export CODETRANS_NGINX_PORT=8088
5252
5353# ## Endpoint of the backend service
5454export CODETRANS_BACKEND_SERVICE_URL=" http://${EXTERNAL_HOST_IP} :${CODETRANS_BACKEND_SERVICE_PORT} /v1/codetrans"
0 commit comments