Skip to content

Commit

Permalink
Fix validation failure without exit. (#460)
Browse files Browse the repository at this point in the history
* Fix validation failure without exit.

Signed-off-by: zepan <[email protected]>

* Change validate log.

Signed-off-by: zepan <[email protected]>

* Fix validation failure without exit.

Signed-off-by: zepan <[email protected]>

* Change validate log.

Signed-off-by: zepan <[email protected]>

* Change validate log.

Signed-off-by: zepan <[email protected]>

* Fix issue for reranking-langchain-mosec.

Signed-off-by: zepan <[email protected]>

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix script issue

Signed-off-by: zepan <[email protected]>

---------

Signed-off-by: zepan <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
ZePan110 and pre-commit-ci[bot] authored Aug 13, 2024
1 parent 8a62bac commit f46f1f3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
4 changes: 2 additions & 2 deletions comps/reranks/langchain-mosec/mosec-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ ENV GLIBC_TUNABLES glibc.cpu.x86_shstk=permissive
COPY comps /home/user/comps

RUN apt update && apt install -y python3 python3-pip
USER user

RUN pip3 install torch==2.2.2 torchvision --trusted-host download.pytorch.org --index-url https://download.pytorch.org/whl/cpu
RUN pip3 install intel-extension-for-pytorch==2.2.0
RUN pip3 install transformers sentence-transformers
RUN pip3 install llmspec mosec

RUN cd /home/user/ && export HF_ENDPOINT=https://hf-mirror.com && huggingface-cli download --resume-download BAAI/bge-reranker-large --local-dir /home/user/bge-reranker-large

USER user
ENV EMB_MODEL="/home/user/bge-reranker-large/"

WORKDIR /home/user/comps/reranks/langchain-mosec/mosec-docker
Expand Down
2 changes: 1 addition & 1 deletion comps/reranks/langchain-mosec/mosec-docker/server-ipex.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from torch.utils.data import DataLoader
from tqdm.autonotebook import tqdm, trange

DEFAULT_MODEL = "/root/bge-reranker-large"
DEFAULT_MODEL = "/home/user/bge-reranker-large"


class MyCrossEncoder(CrossEncoder):
Expand Down
14 changes: 10 additions & 4 deletions tests/test_reranks_langchain-mosec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,18 @@ function start_service() {

function validate_microservice() {
mosec_service_port=5007
http_proxy="" curl http://${ip_address}:${mosec_service_port}/v1/reranking\
result=$(http_proxy="" curl http://${ip_address}:${mosec_service_port}/v1/reranking\
-X POST \
-d '{"initial_query":"What is Deep Learning?", "retrieved_docs": [{"text":"Deep Learning is not..."}, {"text":"Deep learning is..."}]}' \
-H 'Content-Type: application/json'
docker logs test-comps-reranking-langchain-mosec-server
docker logs test-comps-reranking-langchain-mosec-endpoint
-H 'Content-Type: application/json')
if [[ $result == *"Human"* ]]; then
echo "Result correct."
else
echo "Result wrong. Received was $result"
docker logs test-comps-reranking-langchain-mosec-endpoint
docker logs test-comps-reranking-langchain-mosec-server
exit 1
fi
}

function stop_docker() {
Expand Down
14 changes: 10 additions & 4 deletions tests/test_web_retrievers_langchain_chroma.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,18 @@ function validate_microservice() {
retriever_port=5019
export PATH="${HOME}/miniforge3/bin:$PATH"
test_embedding=$(python -c "import random; embedding = [random.uniform(-1, 1) for _ in range(768)]; print(embedding)")
http_proxy='' curl http://${ip_address}:$retriever_port/v1/web_retrieval \
result=$(http_proxy='' curl http://${ip_address}:$retriever_port/v1/web_retrieval \
-X POST \
-d "{\"text\":\"What is OPEA?\",\"embedding\":${test_embedding}}" \
-H 'Content-Type: application/json'
docker logs test-comps-web-retriever-tei-endpoint
docker logs test-comps-web-retriever-chroma-server
-H 'Content-Type: application/json')
if [[ $result == *"title"* ]]; then
echo "Result correct."
else
echo "Result wrong. Received status was $result"
docker logs test-comps-web-retriever-tei-endpoint
docker logs test-comps-web-retriever-chroma-server
exit 1
fi
}

function stop_docker() {
Expand Down

0 comments on commit f46f1f3

Please sign in to comment.