Skip to content

Commit

Permalink
Fix BACKEND_SERVICE_ENDPOINT variable value in the VideoQnA instructi…
Browse files Browse the repository at this point in the history
…ons (#821)

Signed-off-by: dmsuehir <[email protected]>
  • Loading branch information
dmsuehir committed Sep 18, 2024
1 parent bceacdc commit 79e947e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VideoQnA/docker_compose/intel/cpu/xeon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export your_hf_api_token="Your_Huggingface_API_Token"
**Append the value of the public IP address to the no_proxy list**

```
export your_no_proxy=${your_no_proxy},"External_Public_IP"
export your_no_proxy="${your_no_proxy},${host_ip}"
```

Then you can run below commands or `source set_env.sh` to set all the variables
Expand All @@ -156,7 +156,7 @@ export RERANK_SERVICE_HOST_IP=${host_ip}
export LVM_SERVICE_HOST_IP=${host_ip}

export LVM_ENDPOINT="http://${host_ip}:9009"
export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:8888/v1/chatqna"
export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:8888/v1/videoqna"
export BACKEND_HEALTH_CHECK_ENDPOINT="http://${host_ip}:8888/v1/health_check"
export DATAPREP_SERVICE_ENDPOINT="http://${host_ip}:6007/v1/dataprep"
export DATAPREP_GET_FILE_ENDPOINT="http://${host_ip}:6007/v1/dataprep/get_file"
Expand Down

0 comments on commit 79e947e

Please sign in to comment.