Skip to content

Commit 3c6ff74

Browse files
committed
Fix some typos.
Signed-off-by: Yao, Qing <qing.yao@intel.com>
1 parent 713b55d commit 3c6ff74

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

PolyLingua/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ The service works with any HuggingFace text generation model. Recommended models
111111

112112
- **swiss-ai/Apertus-8B-Instruct-2509** - Multilingual translation (default)
113113
- **haoranxu/ALMA-7B** - Specialized translation model
114-
- \*\*Qwen/Qwen2.5-7B-Instruct88 - Other Common model (Gaudi default)
114+
- \*\*Qwen/Qwen2.5-7B-Instruct - Other Common model (Gaudi default)
115115

116116
## 🛠️ Development
117117

PolyLingua/docker_compose/intel/hpu/gaudi/compose.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ services:
5050
HF_HUB_ENABLE_HF_TRANSFER: 0
5151
restart: unless-stopped
5252

53-
polylingua-xeon-backend-server:
53+
polylingua-gaudi-backend-server:
5454
image: ${REGISTRY:-opea}/polylingua:${TAG:-latest}
55-
container_name: polylingua-xeon-backend-server
55+
container_name: polylingua-gaudi-backend-server
5656
depends_on:
5757
- vllm-service
5858
- llm
@@ -73,7 +73,7 @@ services:
7373
image: ${REGISTRY:-opea}/polylingua-ui:${TAG:-latest}
7474
container_name: polylingua-ui-server
7575
depends_on:
76-
- polylingua-xeon-backend-server
76+
- polylingua-gaudi-backend-server
7777
ports:
7878
- "5173:5173"
7979
environment:
@@ -88,7 +88,7 @@ services:
8888
image: nginx:alpine
8989
container_name: polylingua-nginx-server
9090
depends_on:
91-
- polylingua-xeon-backend-server
91+
- polylingua-gaudi-backend-server
9292
- polylingua-ui-server
9393
ports:
9494
- "${NGINX_PORT:-80}:80"

PolyLingua/tests/test_compose_on_gaudi.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
set -xe
66
IMAGE_REPO=${IMAGE_REPO:-"opea"}
77
IMAGE_TAG=${IMAGE_TAG:-"latest"}
8-
echo "REGISTRY=IMAGE_REPO=${IMAGE_REPO}"
9-
echo "TAG=IMAGE_TAG=${IMAGE_TAG}"
8+
echo "IMAGE_REPO=${IMAGE_REPO}"
9+
echo "IMAGE_TAG=${IMAGE_TAG}"
1010
export REGISTRY=${IMAGE_REPO}
1111
export TAG=${IMAGE_TAG}
12-
export MODEL_CACHE=${model_cache:-"./data"}
12+
export MODEL_CACHE=${MODEL_CACHE:-"./data"}
1313

1414
# Get the directory where this script is located
1515
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
@@ -259,7 +259,7 @@ function validate_file_translation() {
259259
"http://${ip_address}:8888/v1/translation" \
260260
"choices" \
261261
"file-translation" \
262-
"polylingua-xeon-backend-server" \
262+
"polylingua-gaudi-backend-server" \
263263
'-F "file=@test_data/sample.txt" -F "language_from=English" -F "language_to=Spanish"' \
264264
"multipart/form-data"
265265
}
@@ -296,7 +296,7 @@ function validate_ui() {
296296
}
297297

298298
function stop_docker() {
299-
cd $WORKPATH/docker_compose/intel/cpu/xeon/
299+
cd $WORKPATH/docker_compose/intel/hpu/gaudi/
300300
echo "Stopping services..."
301301
docker compose -f compose.yaml down
302302
echo "Services stopped"
@@ -306,7 +306,7 @@ function main() {
306306
echo "======================================"
307307
echo "PolyLingua E2E Test Suite"
308308
echo "======================================"
309-
echo "Platform: Intel Xeon (CPU)"
309+
echo "Platform: Intel Gaudi (HPU)"
310310
echo "LLM Backend: vLLM"
311311
echo "IP Address: ${ip_address}"
312312
echo "======================================"

0 commit comments

Comments
 (0)