Skip to content

Commit 02b497c

Browse files
committed
Fix typo
Signed-off-by: ZePan110 <ze.pan@intel.com>
1 parent 0bc2983 commit 02b497c

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/manual-example-workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
nodes=($(echo ${{ inputs.nodes }} | tr ',' ' '))
8282
nodes_json=$(printf '%s\n' "${nodes[@]}" | sort -u | jq -R '.' | jq -sc '.')
8383
echo "nodes=$nodes_json" >> $GITHUB_OUTPUT
84+
echo "OPEA_IMAGE_REPO is ${OPEA_IMAGE_REPO}"
8485
8586
build-comps-base:
8687
needs: [get-test-matrix]

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ docker compose -f compose_remote.yaml up -d
190190

191191
## ChatQnA with Conversational UI (Optional)
192192

193-
To access the Conversational UI (react based) frontend, modify the UI service in the `compose` file used to deploy. Replace `chaqna-xeon-ui-server` service with the `chatqna-xeon-conversation-ui-server` service as per the config below:
193+
To access the Conversational UI (react based) frontend, modify the UI service in the `compose` file used to deploy. Replace `chatqna-xeon-ui-server` service with the `chatqna-xeon-conversation-ui-server` service as per the config below:
194194

195195
```yaml
196196
chatqna-xeon-conversation-ui-server:
@@ -202,15 +202,15 @@ chatqna-xeon-conversation-ui-server:
202202
ports:
203203
- "5174:80"
204204
depends_on:
205-
- chaqna-xeon-backend-server
205+
- chatqna-xeon-backend-server
206206
ipc: host
207207
restart: always
208208
```
209209
210210
Once the services are up, open the following URL in the browser: http://{host_ip}:5174. By default, the UI runs on port 80 internally. If the developer prefers to use a different host port to access the frontend, it can be modified by port mapping in the `compose.yaml` file as shown below:
211211

212212
```yaml
213-
chaqna-gaudi-conversation-ui-server:
213+
chatqna-gaudi-conversation-ui-server:
214214
image: opea/chatqna-conversation-ui:latest
215215
...
216216
ports:

ChatQnA/docker_compose/intel/hpu/gaudi/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ The `vllm-guardrails-service` uses the `GUARDRAILS_MODEL_ID` parameter to select
296296

297297
## ChatQnA with Conversational UI (Optional)
298298

299-
To access the Conversational UI (react based) frontend, modify the UI service in the `compose` file used to deploy. 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` file used to deploy. Replace `chatqna-xeon-ui-server` service with the `chatqna-xeon-conversation-ui-server` service as per the config below:
300300

301301
```yaml
302302
chatqna-xeon-conversation-ui-server:
@@ -308,15 +308,15 @@ chatqna-xeon-conversation-ui-server:
308308
ports:
309309
- "5174:80"
310310
depends_on:
311-
- chaqna-xeon-backend-server
311+
- chatqna-xeon-backend-server
312312
ipc: host
313313
restart: always
314314
```
315315
316316
Once the services are up, open the following URL in the browser: http://{host_ip}:5174. By default, the UI runs on port 80 internally. If the developer prefers to use a different host port to access the frontend, it can be modified by port mapping in the `compose.yaml` file as shown below:
317317

318318
```yaml
319-
chaqna-gaudi-conversation-ui-server:
319+
chatqna-gaudi-conversation-ui-server:
320320
image: opea/chatqna-conversation-ui:latest
321321
...
322322
ports:

0 commit comments

Comments
 (0)