Skip to content

Commit 61b8fa9

Browse files
ZePan110chensuyuepre-commit-ci[bot]
authored
Opt filecheck (#663)
* update description Signed-off-by: chensuyue <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Optimize path-scan. Signed-off-by: ZePan110 <[email protected]> * For test. Signed-off-by: ZePan110 <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix bug. Signed-off-by: ZePan110 <[email protected]> * test1 Signed-off-by: ZePan110 <[email protected]> * test2. Signed-off-by: ZePan110 <[email protected]> * test3 Signed-off-by: ZePan110 <[email protected]> * Restore test file. Signed-off-by: ZePan110 <[email protected]> * test4 Signed-off-by: ZePan110 <[email protected]> * Fix syntax error Signed-off-by: ZePan110 <[email protected]> * test Signed-off-by: ZePan110 <[email protected]> * test Signed-off-by: ZePan110 <[email protected]> * Fix issue. Signed-off-by: ZePan110 <[email protected]> * Remove debug output Signed-off-by: ZePan110 <[email protected]> * Restore test file and remove debug output. Signed-off-by: ZePan110 <[email protected]> * Remove deprecated code. Signed-off-by: ZePan110 <[email protected]> * Modify output. Signed-off-by: ZePan110 <[email protected]> * modify output Signed-off-by: ZePan110 <[email protected]> * Fix file path error. Signed-off-by: ZePan110 <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix issue Signed-off-by: ZePan110 <[email protected]> * Fix error Signed-off-by: ZePan110 <[email protected]> * Fix error. Signed-off-by: ZePan110 <[email protected]> * Fix error. Signed-off-by: ZePan110 <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix error Signed-off-by: ZePan110 <[email protected]> * resolve confilct. Signed-off-by: ZePan110 <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix error. Signed-off-by: ZePan110 <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: chensuyue <[email protected]> Signed-off-by: ZePan110 <[email protected]> Co-authored-by: chen, suyue <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 7e40475 commit 61b8fa9

20 files changed

+175
-47
lines changed

.github/workflows/docker/compose/dataprep-compose-cd.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ services:
77
build:
88
dockerfile: comps/dataprep/redis/llama_index/Dockerfile
99
image: ${REGISTRY:-opea}/dataprep-redis-llama-index:${TAG:-latest}
10-
dataprep-on-ray-redis:
11-
build:
12-
dockerfile: comps/dataprep/redis/langchain_ray/Dockerfile
13-
image: ${REGISTRY:-opea}/dataprep-on-ray-redis:${TAG:-latest}
1410
dataprep-milvus:
1511
build:
1612
dockerfile: comps/dataprep/milvus/langchain/Dockerfile
@@ -23,7 +19,15 @@ services:
2319
build:
2420
dockerfile: comps/dataprep/pinecone/langchain/Dockerfile
2521
image: ${REGISTRY:-opea}/dataprep-pinecone:${TAG:-latest}
22+
dataprep-redis: #need to rename
23+
build:
24+
dockerfile: comps/dataprep/multimodal/redis/langchain/Dockerfile
25+
image: ${REGISTRY:-opea}/dataprep-redis:${TAG:-latest}
2626
dataprep-vdms:
2727
build:
28-
dockerfile: comps/dataprep/vdms/multimodal_langchain/docker/Dockerfile
28+
dockerfile: comps/dataprep/vdms/multimodal_langchain/Dockerfile
29+
image: ${REGISTRY:-opea}/dataprep-vdms:${TAG:-latest}
30+
dataprep-vdmsxx: #need to rename
31+
build:
32+
dockerfile: comps/dataprep/vdms/langchain/Dockerfile
2933
image: ${REGISTRY:-opea}/dataprep-vdms:${TAG:-latest}

.github/workflows/docker/compose/dataprep-compose.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ services:
1313
build:
1414
dockerfile: comps/dataprep/qdrant/langchain/Dockerfile
1515
image: ${REGISTRY:-opea}/dataprep-qdrant:${TAG:-latest}
16+
dataprep-on-ray-redis:
17+
build:
18+
dockerfile: comps/dataprep/redis/langchain_ray/Dockerfile
19+
image: ${REGISTRY:-opea}/dataprep-on-ray-redis:${TAG:-latest}

.github/workflows/docker/compose/embeddings-compose-cd.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,19 @@ services:
1414
build:
1515
dockerfile: comps/embeddings/tei/llama_index/Dockerfile
1616
image: ${REGISTRY:-opea}/embedding-tei-llama-index:${TAG:-latest}
17+
embedding-multimodal:
18+
build:
19+
dockerfile: comps/embeddings/multimodal_clip/Dockerfile
20+
image: ${REGISTRY:-opea}/embedding-multimodal:${TAG:-latest}
21+
bridgetower-embedder:
22+
build:
23+
dockerfile: comps/embeddings/multimodal/bridgetower/Dockerfile
24+
image: ${REGISTRY:-opea}/bridgetower-embedder:${TAG:-latest}
25+
bridgetower-embedder-gaudi:
26+
build:
27+
dockerfile: comps/embeddings/multimodal/bridgetower/Dockerfile.intel_hpu
28+
image: ${REGISTRY:-opea}/bridgetower-embedder-gaudi:${TAG:-latest}
29+
embedding-multimodalxx: #need to rename
30+
build:
31+
dockerfile: comps/embeddings/multimodal/multimodal_langchain/Dockerfile
32+
image: ${REGISTRY:-opea}/embedding-multimodal:${TAG:-latest}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# this file should be run in the root of the repo
5+
services:
6+
feedbackmanagement:
7+
build:
8+
dockerfile: comps/feedback_management/mongo/Dockerfile
9+
image: ${REGISTRY:-opea}/feedbackmanagement:${TAG:-latest}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# this file should be run in the root of the repo
5+
services:
6+
finetuning:
7+
build:
8+
dockerfile: comps/finetuning/Dockerfile
9+
image: ${REGISTRY:-opea}/finetuning:${TAG:-latest}
10+
finetuning-gaudi:
11+
build:
12+
dockerfile: comps/finetuning/Dockerfile.intel_hpu
13+
image: ${REGISTRY:-opea}/finetuning-gaudi:${TAG:-latest}

.github/workflows/docker/compose/guardrails-compose-cd.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ services:
66
build:
77
dockerfile: comps/guardrails/pii_detection/Dockerfile
88
image: ${REGISTRY:-opea}/guardrails-pii-detection:${TAG:-latest}
9+
guardrails-toxicity-detection:
10+
build:
11+
dockerfile: comps/guardrails/toxicity_detection/Dockerfile
12+
image: ${REGISTRY:-opea}/guardrails-toxicity-detection:${TAG:-latest}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# this file should be run in the root of the repo
5+
services:
6+
llm-tgi:
7+
build:
8+
dockerfile: comps/intent_detection/langchain/Dockerfile
9+
image: ${REGISTRY:-opea}/llm-tgi:${TAG:-latest}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Copyright (C) 2024 Intel Corporation
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# this file should be run in the root of the repo
5+
services:
6+
knowledge_graphs:
7+
build:
8+
dockerfile: comps/knowledgegraphs/langchain/Dockerfile
9+
image: ${REGISTRY:-opea}/knowledge_graphs:${TAG:-latest}

.github/workflows/docker/compose/llms-compose-cd.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ services:
1111
context: vllm-openvino
1212
dockerfile: Dockerfile.openvino
1313
image: ${REGISTRY:-opea}/vllm-openvino:${TAG:-latest}
14+
llm-nativexx: #need to rename
15+
build:
16+
dockerfile: comps/llms/utils/lm-eval/Dockerfile
17+
image: ${REGISTRY:-opea}/llm-native:${TAG:-latest}
1418
llm-vllm-llamaindex:
1519
build:
1620
dockerfile: comps/llms/text-generation/vllm/llama_index/Dockerfile

0 commit comments

Comments
 (0)