238 lines
7.4 KiB
YAML
238 lines
7.4 KiB
YAML
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
services:
|
|
redis-vector-db:
|
|
image: redis/redis-stack:7.2.0-v9
|
|
container_name: redis-vector-db
|
|
ports:
|
|
- "6379:6379"
|
|
- "8001:8001"
|
|
dataprep-redis-service:
|
|
image: ${REGISTRY:-opea}/dataprep:${TAG:-latest}
|
|
container_name: dataprep-redis-server
|
|
depends_on:
|
|
- redis-vector-db
|
|
- tei-embedding-service
|
|
ports:
|
|
- "6007:5000"
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
REDIS_URL: redis://redis-vector-db:6379
|
|
REDIS_HOST: redis-vector-db
|
|
INDEX_NAME: ${INDEX_NAME}
|
|
TEI_ENDPOINT: http://tei-embedding-service:80
|
|
HUGGINGFACEHUB_API_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost:5000/v1/health_check || exit 1"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 50
|
|
restart: unless-stopped
|
|
vllm-guardrails-service:
|
|
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
|
|
container_name: vllm-guardrails-server
|
|
ports:
|
|
- "8088:80"
|
|
volumes:
|
|
- "${MODEL_CACHE:-./data}:/data"
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
HF_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
HABANA_VISIBLE_DEVICES: all
|
|
OMPI_MCA_btl_vader_single_copy_mechanism: none
|
|
GURADRAILS_MODEL_ID: ${GURADRAILS_MODEL_ID}
|
|
NUM_CARDS: ${NUM_CARDS}
|
|
VLLM_TORCH_PROFILER_DIR: "/mnt"
|
|
runtime: habana
|
|
cap_add:
|
|
- SYS_NICE
|
|
ipc: host
|
|
command: --model ${GURADRAILS_MODEL_ID} --tensor-parallel-size ${NUM_CARDS} --host 0.0.0.0 --port 80 --block-size 128 --max-num-seqs 256 --max-seq-len-to-capture 2048
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://$host_ip:8088/health || exit 1"]
|
|
interval: 10s
|
|
timeout: 10s
|
|
retries: 150
|
|
guardrails:
|
|
image: ${REGISTRY:-opea}/guardrails:${TAG:-latest}
|
|
container_name: guardrails-gaudi-server
|
|
ports:
|
|
- "9090:9090"
|
|
ipc: host
|
|
depends_on:
|
|
vllm-guardrails-service:
|
|
condition: service_healthy
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
SAFETY_GUARD_MODEL_ID: ${GURADRAILS_MODEL_ID}
|
|
SAFETY_GUARD_ENDPOINT: http://vllm-guardrails-service:80
|
|
HUGGINGFACEHUB_API_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
restart: unless-stopped
|
|
tei-embedding-service:
|
|
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.5
|
|
container_name: tei-embedding-gaudi-server
|
|
ports:
|
|
- "8090:80"
|
|
volumes:
|
|
- "${MODEL_CACHE:-./data}:/data"
|
|
shm_size: 1g
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
command: --model-id ${EMBEDDING_MODEL_ID} --auto-truncate
|
|
retriever:
|
|
image: ${REGISTRY:-opea}/retriever:${TAG:-latest}
|
|
container_name: retriever-redis-server
|
|
depends_on:
|
|
- redis-vector-db
|
|
ports:
|
|
- "7000:7000"
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
REDIS_URL: redis://redis-vector-db:6379
|
|
REDIS_HOST: redis-vector-db
|
|
INDEX_NAME: ${INDEX_NAME}
|
|
TEI_EMBEDDING_ENDPOINT: http://tei-embedding-service:80
|
|
HUGGINGFACEHUB_API_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
LOGFLAG: ${LOGFLAG}
|
|
RETRIEVER_COMPONENT_NAME: "OPEA_RETRIEVER_REDIS"
|
|
restart: unless-stopped
|
|
tei-reranking-service:
|
|
image: ghcr.io/huggingface/tei-gaudi:1.5.0
|
|
container_name: tei-reranking-gaudi-server
|
|
ports:
|
|
- "8808:80"
|
|
volumes:
|
|
- "${MODEL_CACHE:-./data}:/data"
|
|
runtime: habana
|
|
cap_add:
|
|
- SYS_NICE
|
|
ipc: host
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
HF_HUB_DISABLE_PROGRESS_BARS: 1
|
|
HF_HUB_ENABLE_HF_TRANSFER: 0
|
|
HABANA_VISIBLE_DEVICES: all
|
|
OMPI_MCA_btl_vader_single_copy_mechanism: none
|
|
MAX_WARMUP_SEQUENCE_LENGTH: 512
|
|
command: --model-id ${RERANK_MODEL_ID} --auto-truncate
|
|
vllm-service:
|
|
image: ${REGISTRY:-opea}/vllm-gaudi:${TAG:-latest}
|
|
container_name: vllm-gaudi-server
|
|
ports:
|
|
- "8008:80"
|
|
volumes:
|
|
- "${MODEL_CACHE:-./data}:/data"
|
|
environment:
|
|
no_proxy: ${no_proxy}
|
|
http_proxy: ${http_proxy}
|
|
https_proxy: ${https_proxy}
|
|
HF_TOKEN: ${HUGGINGFACEHUB_API_TOKEN}
|
|
HABANA_VISIBLE_DEVICES: all
|
|
OMPI_MCA_btl_vader_single_copy_mechanism: none
|
|
LLM_MODEL_ID: ${LLM_MODEL_ID}
|
|
NUM_CARDS: ${NUM_CARDS}
|
|
VLLM_TORCH_PROFILER_DIR: "/mnt"
|
|
runtime: habana
|
|
cap_add:
|
|
- SYS_NICE
|
|
ipc: host
|
|
command: --model ${LLM_MODEL_ID} --tensor-parallel-size ${NUM_CARDS} --host 0.0.0.0 --port 80 --block-size 128 --max-num-seqs 256 --max-seq-len-to-capture 2048
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://$host_ip:8008/health || exit 1"]
|
|
interval: 10s
|
|
timeout: 10s
|
|
retries: 150
|
|
chatqna-gaudi-backend-server:
|
|
image: ${REGISTRY:-opea}/chatqna:${TAG:-latest}
|
|
container_name: chatqna-gaudi-guardrails-server
|
|
depends_on:
|
|
redis-vector-db:
|
|
condition: service_started
|
|
vllm-guardrails-service:
|
|
condition: service_started
|
|
guardrails:
|
|
condition: service_started
|
|
tei-embedding-service:
|
|
condition: service_started
|
|
dataprep-redis-service:
|
|
condition: service_healthy
|
|
retriever:
|
|
condition: service_started
|
|
tei-reranking-service:
|
|
condition: service_started
|
|
vllm-service:
|
|
condition: service_started
|
|
ports:
|
|
- "8888:8888"
|
|
environment:
|
|
- no_proxy=${no_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- http_proxy=${http_proxy}
|
|
- MEGA_SERVICE_HOST_IP=chatqna-gaudi-backend-server
|
|
- GUARDRAIL_SERVICE_HOST_IP=guardrails
|
|
- GUARDRAIL_SERVICE_PORT=${GUARDRAIL_SERVICE_PORT:-9090}
|
|
- EMBEDDING_SERVER_HOST_IP=tei-embedding-service
|
|
- EMBEDDING_SERVER_PORT=${EMBEDDING_SERVER_PORT:-80}
|
|
- RETRIEVER_SERVICE_HOST_IP=retriever
|
|
- RERANK_SERVER_HOST_IP=tei-reranking-service
|
|
- RERANK_SERVER_PORT=${RERANK_SERVER_PORT:-80}
|
|
- LLM_SERVER_HOST_IP=vllm-service
|
|
- LLM_SERVER_PORT=80
|
|
- LLM_MODEL=${LLM_MODEL_ID}
|
|
- LOGFLAG=${LOGFLAG}
|
|
- CHATQNA_TYPE=${CHATQNA_TYPE:-CHATQNA_GUARDRAILS}
|
|
ipc: host
|
|
restart: always
|
|
chatqna-gaudi-ui-server:
|
|
image: ${REGISTRY:-opea}/chatqna-ui:${TAG:-latest}
|
|
container_name: chatqna-gaudi-ui-server
|
|
depends_on:
|
|
- chatqna-gaudi-backend-server
|
|
ports:
|
|
- "5173:5173"
|
|
environment:
|
|
- no_proxy=${no_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- http_proxy=${http_proxy}
|
|
ipc: host
|
|
restart: always
|
|
chatqna-gaudi-nginx-server:
|
|
image: ${REGISTRY:-opea}/nginx:${TAG:-latest}
|
|
container_name: chatqna-gaudi-nginx-server
|
|
depends_on:
|
|
- chatqna-gaudi-backend-server
|
|
- chatqna-gaudi-ui-server
|
|
ports:
|
|
- "${NGINX_PORT:-80}:80"
|
|
environment:
|
|
- no_proxy=${no_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- http_proxy=${http_proxy}
|
|
- FRONTEND_SERVICE_IP=chatqna-gaudi-ui-server
|
|
- FRONTEND_SERVICE_PORT=5173
|
|
- BACKEND_SERVICE_NAME=chatqna
|
|
- BACKEND_SERVICE_IP=chatqna-gaudi-backend-server
|
|
- BACKEND_SERVICE_PORT=8888
|
|
- DATAPREP_SERVICE_IP=dataprep-redis-service
|
|
- DATAPREP_SERVICE_PORT=5000
|
|
ipc: host
|
|
restart: always
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|