Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/manual-comps-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,5 @@ jobs:
mode: ${{ inputs.mode }}
test_compose: ${{ inputs.test_compose }}
test_helmchart: ${{ inputs.test_helmchart }}
use_model_cache: ${{ inputs.use_model_cache }}
secrets: inherit
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
ports:
- "${TEI_EMBEDDER_PORT:-12000}:80"
volumes:
- "${DATA_PATH-./data}:/data"
- "${DATA_PATH:-./data}:/data"
shm_size: 1g
environment:
no_proxy: ${no_proxy}
Expand All @@ -30,7 +30,7 @@ services:
ports:
- "${TEI_RERANKING_PORT:-12003}:80"
volumes:
- "${DATA_PATH-./data}:/data"
- "${DATA_PATH:-./data}:/data"
shm_size: 1g
environment:
no_proxy: ${no_proxy}
Expand All @@ -51,7 +51,7 @@ services:
ports:
- ${TEI_RERANKING_PORT:-12004}:80
volumes:
- "${DATA_PATH-./data}:/data"
- "${DATA_PATH:-./data}:/data"
shm_size: 1g
environment:
no_proxy: ${no_proxy}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
ports:
- ${TEI_PORT:-6060}:80
volumes:
- "${DATA_PATH-./data}:/data"
- "${DATA_PATH:-./data}:/data"
shm_size: 1g
environment:
no_proxy: ${no_proxy}
Expand Down
2 changes: 1 addition & 1 deletion tests/dataprep/test_dataprep_milvus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ip_address=$(hostname -I | awk '{print $1}')
DATAPREP_PORT=11101
service_name="dataprep-milvus tei-embedding-serving etcd minio standalone"
export TAG="comps"

export DATA_PATH=${model_cache}
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
source ${SCRIPT_DIR}/dataprep_utils.sh

Expand Down
1 change: 1 addition & 0 deletions tests/dataprep/test_dataprep_neo4j_on_intel_hpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ip_address=$(hostname -I | awk '{print $1}')
DATAPREP_PORT=11103
LLM_ENDPOINT_PORT=10510
export TAG="comps"
export DATA_PATH=${model_cache}

function build_docker_images() {
cd $WORKPATH
Expand Down
1 change: 1 addition & 0 deletions tests/dataprep/test_dataprep_qdrant.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ip_address=$(hostname -I | awk '{print $1}')
DATAPREP_PORT="11107"
TEI_EMBEDDER_PORT="10220"
export TAG="comps"
export DATA_PATH=${model_cache}

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
source ${SCRIPT_DIR}/dataprep_utils.sh
Expand Down
1 change: 1 addition & 0 deletions tests/dataprep/test_dataprep_redis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ip_address=$(hostname -I | awk '{print $1}')
DATAPREP_PORT="11108"
TEI_EMBEDDER_PORT="10221"
export TAG="comps"
export DATA_PATH=${model_cache}

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
source ${SCRIPT_DIR}/dataprep_utils.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function start_vllm_service_70B() {
echo "token is ${HF_TOKEN}"
model="meta-llama/Llama-3.3-70B-Instruct"
vllm_port=8086
export HF_CACHE_DIR=/data2/hf_model
export HF_CACHE_DIR=${model_cache:-./data}
vllm_volume=$HF_CACHE_DIR

echo "start vllm gaudi service"
Expand Down
1 change: 1 addition & 0 deletions tests/dataprep/test_dataprep_redis_multimodal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ caption_fn="${tmp_dir}/${image_name}.txt"
pdf_name="nke-10k-2023"
pdf_fn="${tmp_dir}/${pdf_name}.pdf"
DATAPREP_PORT="11109"
export DATA_PATH=${model_cache}

function build_docker_images() {
cd $WORKPATH
Expand Down
Loading