Skip to content

Commit abdf2c2

Browse files
resolved build issue duplicate image name and links
Signed-off-by: Ramesh <[email protected]>
1 parent 3319a09 commit abdf2c2

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

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

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ This example includes the following sections:
1313

1414
This section describes how to quickly deploy and test the Arbitration Post-Hearing Assistant service manually on an Intel Xeon platform. The basic steps are:
1515

16-
1. [Access the Code](#access-the-code)
17-
2. [Generate a HuggingFace Access Token](#generate-a-huggingface-access-token)
18-
3. [Configure the Deployment Environment](#configure-the-deployment-environment)
19-
4. [Deploy the Services Using Docker Compose](#deploy-the-services-using-docker-compose)
20-
5. [Check the Deployment Status](#check-the-deployment-status)
21-
6. [Test the Pipeline](#test-the-pipeline)
22-
7. [Cleanup the Deployment](#cleanup-the-deployment)
16+
- [Example Arbitration Post-Hearing Assistant deployments on Intel Xeon Processor](#example-arbitration-post-hearing-assistant-deployments-on-intel-xeon-processor)
17+
- [arb-post-hearing-assistant Quick Start Deployment](#arb-post-hearing-assistant-quick-start-deployment)
18+
- [Access the Code and Set Up Environment](#access-the-code-and-set-up-environment)
19+
- [Generate a HuggingFace Access Token](#generate-a-huggingface-access-token)
20+
- [Deploy the Services Using Docker Compose](#deploy-the-services-using-docker-compose)
21+
- [Check the Deployment Status](#check-the-deployment-status)
22+
- [Test the Pipeline](#test-the-pipeline)
23+
- [Cleanup the Deployment](#cleanup-the-deployment)
24+
- [arb-post-hearing-assistant Docker Compose Files](#arb-post-hearing-assistant-docker-compose-files)
25+
- [Running LLM models with remote endpoints](#running-llm-models-with-remote-endpoints)
26+
- [arb-post-hearing-assistant Detailed Usage](#arb-post-hearing-assistant-detailed-usage)
27+
- [Query with text](#query-with-text)
2328

2429
### Access the Code and Set Up Environment
2530

@@ -60,8 +65,8 @@ Please refer to the table below to build different microservices from source:
6065
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
6166
| vLLM | [vLLM build guide](https://github.com/opea-project/GenAIComps/tree/main/comps/third_parties/vllm#build-docker) |
6267
| llm-arb-post-hearing-assistant | [LLM-ArbPostHearingAssistant build guide](https://github.com/opea-project/GenAIComps/tree/main/comps/arb_post_hearing_assistant/src/#12-build-docker-image) |
63-
| MegaService | [MegaService build guide](../../../../README_miscellaneous.md#build-megaservice-docker-image) |
64-
| UI | [Basic UI build guide](../../../../README_miscellaneous.md#build-ui-docker-image) |
68+
| MegaService | [MegaService build guide](../../../README_miscellaneous.md#build-megaservice-docker-image) |
69+
| UI | [Basic UI build guide](../../../README_miscellaneous.md#build-ui-docker-image) |
6570

6671
### Check the Deployment Status
6772

ArbPostHearingAssistant/docker_image_build/build.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
services:
5-
arbPostHearingAssistant:
5+
arb-post-hearing-assistant:
66
build:
77
args:
88
IMAGE_REPO: ${REGISTRY}
@@ -13,7 +13,7 @@ services:
1313
context: ../
1414
dockerfile: ./Dockerfile
1515
image: ${REGISTRY:-opea}/arb-post-hearing-assistant:${TAG:-latest}
16-
arbPostHearingAssistant-gradio-ui:
16+
arb-post-hearing-assistant-gradio-ui:
1717
build:
1818
args:
1919
http_proxy: ${http_proxy}
@@ -22,14 +22,9 @@ services:
2222
dockerfile: ./docker/Dockerfile.gradio
2323
extends: arbPostHearingAssistant
2424
image: ${REGISTRY:-opea}/arb-post-hearing-assistant-gradio-ui:${TAG:-latest}
25-
llm-arbPostHearingAssistant:
25+
llm-arb-post-hearing-assistant:
2626
build:
2727
context: ../../../GenAIComps
2828
dockerfile: comps/arb_post_hearing_assistant/src/Dockerfile
2929
extends: arbPostHearingAssistant
30-
image: ${REGISTRY:-opea}/llm-arb-post-hearing-assistant:${TAG:-latest}
31-
vllm-rocm:
32-
build:
33-
context: ../../../GenAIComps
34-
dockerfile: comps/third_parties/vllm/src/Dockerfile.amd_gpu
35-
image: ${REGISTRY:-opea}/vllm-rocm:${TAG:-latest}
30+
image: ${REGISTRY:-opea}/llm-arb-post-hearing-assistant:${TAG:-latest}

0 commit comments

Comments
 (0)