From c3cd8dc5817b9a8a830ac72cb7243cda0d4716c4 Mon Sep 17 00:00:00 2001 From: sharanshirodkar7 Date: Tue, 27 Aug 2024 13:26:43 -0400 Subject: [PATCH] add predictionguard microservices reference to github workflows Signed-off-by: sharanshirodkar7 --- .../docker/compose/embeddings-compose.yaml | 4 ++++ .../docker/compose/guardrails-compose.yaml | 16 ++++++++++++++++ .../workflows/docker/compose/llms-compose.yaml | 8 ++++++++ 3 files changed, 28 insertions(+) diff --git a/.github/workflows/docker/compose/embeddings-compose.yaml b/.github/workflows/docker/compose/embeddings-compose.yaml index e442b179b..87fbdb7bb 100644 --- a/.github/workflows/docker/compose/embeddings-compose.yaml +++ b/.github/workflows/docker/compose/embeddings-compose.yaml @@ -8,3 +8,7 @@ services: build: dockerfile: comps/embeddings/langchain/docker/Dockerfile image: ${REGISTRY}opea/embedding-tei:${TAG:-latest} + embedding-predictionguard: + build: + dockerfile: comps/embeddings/predictionguard/docker/Dockerfile + image: ${REGISTRY}opea/embedding-predictionguard:${TAG:-latest} diff --git a/.github/workflows/docker/compose/guardrails-compose.yaml b/.github/workflows/docker/compose/guardrails-compose.yaml index 30592aecb..8663dbcca 100644 --- a/.github/workflows/docker/compose/guardrails-compose.yaml +++ b/.github/workflows/docker/compose/guardrails-compose.yaml @@ -13,3 +13,19 @@ services: build: dockerfile: comps/guardrails/pii_detection/docker/Dockerfile image: ${REGISTRY}opea/guardrails-pii-detection:${TAG:-latest} + factuality-predictionguard: + build: + dockerfile: comps/guardrails/factuality/predictionguard/docker/Dockerfile + image: ${REGISTRY}opea/factuality-predictionguard:${TAG:-latest} + injection-predictionguard: + build: + dockerfile: comps/guardrails/prompt_injection/predictionguard/docker/Dockerfile + image: ${REGISTRY}opea/injection-predictionguard:${TAG:-latest} + guardrails-toxicity-detection: + build: + dockerfile: comps/guardrails/toxicity_detection/docker/Dockerfile + image: ${REGISTRY}opea/guardrails-toxicity-detection:${TAG:-latest} + pii-predictionguard: + build: + dockerfile: comps/guardrails/pii_detection/predictionguard/docker/Dockerfile + image: ${REGISTRY}opea/pii-predictionguard:${TAG:-latest} diff --git a/.github/workflows/docker/compose/llms-compose.yaml b/.github/workflows/docker/compose/llms-compose.yaml index a1bc921bb..a899bcfce 100644 --- a/.github/workflows/docker/compose/llms-compose.yaml +++ b/.github/workflows/docker/compose/llms-compose.yaml @@ -28,3 +28,11 @@ services: build: dockerfile: comps/llms/text-generation/vllm-ray/docker/Dockerfile.microservice image: ${REGISTRY}opea/llm-vllm-ray:${TAG:-latest} + llm-vllm-ray-hpu: + build: + dockerfile: comps/llms/text-generation/vllm-ray/docker/Dockerfile.vllmray + image: ${REGISTRY}opea/llm-vllm-ray-hpu:${TAG:-latest} + llm-predictionguard: + build: + dockerfile: comps/llms/text-generation/predictionguard/docker/Dockerfile + image: ${REGISTRY}opea/llm-predictionguard:${TAG:-latest}