From d246c0ecf2e928f36dc7561925365cea7673531f Mon Sep 17 00:00:00 2001 From: lvliang-intel Date: Thu, 23 May 2024 22:17:40 +0800 Subject: [PATCH] Fix LLM filename (#87) Signed-off-by: lvliang-intel --- comps/llms/README.md | 2 +- comps/llms/text-generation/tgi/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comps/llms/README.md b/comps/llms/README.md index 79ed6d0cea..9e29fd53cd 100644 --- a/comps/llms/README.md +++ b/comps/llms/README.md @@ -36,7 +36,7 @@ curl http://${your_ip}:8008/generate \ ```bash export TGI_LLM_ENDPOINT="http://${your_ip}:8008" -python langchain/llm_tgi.py +python langchain/llm.py ``` # 🚀Start Microservice with Docker diff --git a/comps/llms/text-generation/tgi/Dockerfile b/comps/llms/text-generation/tgi/Dockerfile index 381f15adb5..4c0998ee22 100644 --- a/comps/llms/text-generation/tgi/Dockerfile +++ b/comps/llms/text-generation/tgi/Dockerfile @@ -34,4 +34,4 @@ ENV PYTHONPATH=$PYTHONPATH:/home/user WORKDIR /home/user/comps/llms/text-generation/tgi -ENTRYPOINT ["python", "llm_tgi.py"] +ENTRYPOINT ["python", "llm.py"]