Signed-off-by: letonghan <letong.han@intel.com> Signed-off-by: root <root@a4bf019305c5.jf.intel.com> Co-authored-by: root <root@a4bf019305c5.jf.intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
19 lines
594 B
Bash
19 lines
594 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
export LLM_MODEL_ID="haoranxu/ALMA-13B"
|
|
export TGI_LLM_ENDPOINT="http://${host_ip}:8008"
|
|
export HUGGINGFACEHUB_API_TOKEN=${your_hf_api_token}
|
|
export MEGA_SERVICE_HOST_IP=${host_ip}
|
|
export LLM_SERVICE_HOST_IP=${host_ip}
|
|
export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:8888/v1/translation"
|
|
export NGINX_PORT=80
|
|
export FRONTEND_SERVICE_IP=${host_ip}
|
|
export FRONTEND_SERVICE_PORT=5173
|
|
export BACKEND_SERVICE_NAME=translation
|
|
export BACKEND_SERVICE_IP=${host_ip}
|
|
export BACKEND_SERVICE_PORT=8888
|