Skip to content

Commit

Permalink
resolve port conflict, fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
Spycsh committed Dec 20, 2024
1 parent 2fa1219 commit 3c1101c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion comps/tts/src/integrations/dependency/gpt-sovits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This microservice is validated on Xeon/CUDA. HPU support is under development.
## Build the Image

```bash
docker build -t opea/gpt-sovits:latest --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy -f comps/tts/gpt-sovits/Dockerfile .
docker build -t opea/gpt-sovits:latest --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy -f comps/tts/src/integrations/dependency/gpt-sovits/Dockerfile .
```

## Start the Service
Expand Down
6 changes: 3 additions & 3 deletions tests/asr/test_asr_whisper_on_intel_hpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ function build_docker_images() {

function start_service() {
unset http_proxy
docker run -d --name="test-comps-asr-whisper-gaudi" --runtime=habana -e HABANA_VISIBLE_DEVICES=all -e OMPI_MCA_btl_vader_single_copy_mechanism=none --cap-add=sys_nice -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e no_proxy=$no_proxy -p 7066:7066 --ipc=host opea/whisper-gaudi:comps
docker run -d --name="test-comps-asr" -e ASR_ENDPOINT=http://$ip_address:7066 -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e no_proxy=$no_proxy -p 9089:9099 --ipc=host opea/asr:comps
docker run -d --name="test-comps-asr-whisper-gaudi" --runtime=habana -e HABANA_VISIBLE_DEVICES=all -e OMPI_MCA_btl_vader_single_copy_mechanism=none --cap-add=sys_nice -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e no_proxy=$no_proxy -p 7067:7066 --ipc=host opea/whisper-gaudi:comps
docker run -d --name="test-comps-asr" -e ASR_ENDPOINT=http://$ip_address:7067 -e http_proxy=$http_proxy -e https_proxy=$https_proxy -e no_proxy=$no_proxy -p 9089:9099 --ipc=host opea/asr:comps
sleep 2m
}

Expand All @@ -43,7 +43,7 @@ function validate_microservice() {
echo "Result correct."
else
echo "Result wrong."
docker logs test-comps-asr-whisper
docker logs test-comps-asr-whisper-gaudi
docker logs test-comps-asr
exit 1
fi
Expand Down

0 comments on commit 3c1101c

Please sign in to comment.