Skip to content

Commit 79e947e

Browse files
authored
Fix BACKEND_SERVICE_ENDPOINT variable value in the VideoQnA instructions (#821)
Signed-off-by: dmsuehir <dina.s.jones@intel.com>
1 parent bceacdc commit 79e947e

File tree

1 file changed

+2
-2
lines changed
  • VideoQnA/docker_compose/intel/cpu/xeon

1 file changed

+2
-2
lines changed

VideoQnA/docker_compose/intel/cpu/xeon/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export your_hf_api_token="Your_Huggingface_API_Token"
140140
**Append the value of the public IP address to the no_proxy list**
141141

142142
```
143-
export your_no_proxy=${your_no_proxy},"External_Public_IP"
143+
export your_no_proxy="${your_no_proxy},${host_ip}"
144144
```
145145

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

158158
export LVM_ENDPOINT="http://${host_ip}:9009"
159-
export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:8888/v1/chatqna"
159+
export BACKEND_SERVICE_ENDPOINT="http://${host_ip}:8888/v1/videoqna"
160160
export BACKEND_HEALTH_CHECK_ENDPOINT="http://${host_ip}:8888/v1/health_check"
161161
export DATAPREP_SERVICE_ENDPOINT="http://${host_ip}:6007/v1/dataprep"
162162
export DATAPREP_GET_FILE_ENDPOINT="http://${host_ip}:6007/v1/dataprep/get_file"

0 commit comments

Comments
 (0)