Skip to content

Commit 43b2ae5

Browse files
authored
Fix readme for nv gpu (#727)
1 parent 6730b24 commit 43b2ae5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ChatQnA/docker/gpu/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -296,28 +296,28 @@ To access the frontend, open the following URL in your browser: http://{host_ip}
296296
297297
## 🚀 Launch the Conversational UI (Optional)
298298
299-
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:
299+
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:
300300

301301
```yaml
302-
chaqna-xeon-conversation-ui-server:
303-
image: opea/chatqna-conversation-ui:latest
304-
container_name: chatqna-xeon-conversation-ui-server
302+
chatqna-react-ui-server:
303+
image: opea/chatqna-react-ui:latest
304+
container_name: chatqna-react-ui-server
305305
environment:
306306
- APP_BACKEND_SERVICE_ENDPOINT=${BACKEND_SERVICE_ENDPOINT}
307307
- APP_DATA_PREP_SERVICE_URL=${DATAPREP_SERVICE_ENDPOINT}
308308
ports:
309309
- "5174:80"
310310
depends_on:
311-
- chaqna-xeon-backend-server
311+
- chaqna-backend-server
312312
ipc: host
313313
restart: always
314314
```
315315

316316
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:
317317

318318
```yaml
319-
chaqna-xeon-conversation-ui-server:
320-
image: opea/chatqna-conversation-ui:latest
319+
chaqna-react-ui-server:
320+
image: opea/chatqna-react-ui:latest
321321
...
322322
ports:
323323
- "80:80"

0 commit comments

Comments
 (0)