Skip to content

Commit 505da60

Browse files
committed
docs: Make a fix in the main README.md of the ChatQnA.
The source of the set_env.sh from the root folder of the example does not work, need to cd into each of the hardware option (intel/nvidia).
1 parent 6d781f7 commit 505da60

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ChatQnA/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,16 @@ To set up environment variables for deploying ChatQnA services, follow these ste
6868
6969
```bash
7070
# on Gaudi
71-
source ./docker_compose/intel/hpu/gaudi/set_env.sh
71+
cd GenAIExamples/ChatQnA/docker_compose/intel/hpu/gaudi/
72+
source ./set_env.sh
7273
export no_proxy="Your_No_Proxy",chatqna-gaudi-ui-server,chatqna-gaudi-backend-server,dataprep-redis-service,tei-embedding-service,retriever,tei-reranking-service,tgi-service,vllm-service,guardrails
7374
# on Xeon
74-
source ./docker_compose/intel/cpu/xeon/set_env.sh
75+
cd GenAIExamples/ChatQnA/docker_compose/intel/cpu/xeon/
76+
source ./set_env.sh
7577
export no_proxy="Your_No_Proxy",chatqna-xeon-ui-server,chatqna-xeon-backend-server,dataprep-redis-service,tei-embedding-service,retriever,tei-reranking-service,tgi-service,vllm-service
7678
# on Nvidia GPU
77-
source ./docker_compose/nvidia/gpu/set_env.sh
79+
cd GenAIExamples/ChatQnA/docker_compose/nvidia/gpu
80+
source ./set_env.sh
7881
export no_proxy="Your_No_Proxy",chatqna-ui-server,chatqna-backend-server,dataprep-redis-service,tei-embedding-service,retriever,tei-reranking-service,tgi-service
7982
```
8083

0 commit comments

Comments
 (0)