From 43b2ae59a1ecccf1ce65d8abf4cb2134743a43d1 Mon Sep 17 00:00:00 2001 From: huiyan2021 Date: Thu, 5 Sep 2024 08:33:07 +0800 Subject: [PATCH] Fix readme for nv gpu (#727) --- ChatQnA/docker/gpu/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ChatQnA/docker/gpu/README.md b/ChatQnA/docker/gpu/README.md index f559230b6..022cfdfae 100644 --- a/ChatQnA/docker/gpu/README.md +++ b/ChatQnA/docker/gpu/README.md @@ -296,19 +296,19 @@ To access the frontend, open the following URL in your browser: http://{host_ip} ## 🚀 Launch the Conversational UI (Optional) -To access the Conversational UI (react based) frontend, modify the UI service in the `compose.yaml` file. Replace `chaqna-xeon-ui-server` service with the `chatqna-xeon-conversation-ui-server` service as per the config below: +To access the Conversational UI (react based) frontend, modify the UI service in the `compose.yaml` file. Replace `chaqna-ui-server` service with the `chatqna-react-ui-server` service as per the config below: ```yaml -chaqna-xeon-conversation-ui-server: - image: opea/chatqna-conversation-ui:latest - container_name: chatqna-xeon-conversation-ui-server +chatqna-react-ui-server: + image: opea/chatqna-react-ui:latest + container_name: chatqna-react-ui-server environment: - APP_BACKEND_SERVICE_ENDPOINT=${BACKEND_SERVICE_ENDPOINT} - APP_DATA_PREP_SERVICE_URL=${DATAPREP_SERVICE_ENDPOINT} ports: - "5174:80" depends_on: - - chaqna-xeon-backend-server + - chaqna-backend-server ipc: host restart: always ``` @@ -316,8 +316,8 @@ chaqna-xeon-conversation-ui-server: Once the services are up, open the following URL in your browser: http://{host_ip}:5174. By default, the UI runs on port 80 internally. If you prefer to use a different host port to access the frontend, you can modify the port mapping in the `compose.yaml` file as shown below: ```yaml - chaqna-xeon-conversation-ui-server: - image: opea/chatqna-conversation-ui:latest + chaqna-react-ui-server: + image: opea/chatqna-react-ui:latest ... ports: - "80:80"