From db54dcb676ad77d278af14fb40ffaa73776c01ea Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 4 Jul 2024 12:43:55 +0000 Subject: [PATCH] chore(deps): update auto merged updates Signed-off-by: Platform Engineering Bot --- convert_models/Containerfile | 2 +- model_servers/llamacpp_python/base/Containerfile | 2 +- model_servers/llamacpp_python/src/requirements.txt | 2 +- model_servers/llamacpp_python/vulkan/amd64/Containerfile | 2 +- model_servers/llamacpp_python/vulkan/arm64/Containerfile | 2 +- model_servers/object_detection_python/base/Containerfile | 2 +- model_servers/object_detection_python/src/requirements.txt | 4 ++-- recipes/audio/audio_to_text/app/Containerfile | 2 +- recipes/computer_vision/object_detection/app/Containerfile | 2 +- recipes/multimodal/image_understanding/app/Containerfile | 2 +- recipes/natural_language_processing/chatbot/app/Containerfile | 2 +- recipes/natural_language_processing/codegen/app/Containerfile | 2 +- recipes/natural_language_processing/rag/app/Containerfile | 2 +- .../natural_language_processing/summarizer/app/Containerfile | 2 +- .../summarizer/app/requirements.txt | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/convert_models/Containerfile b/convert_models/Containerfile index 39c3b522..c47cd242 100644 --- a/convert_models/Containerfile +++ b/convert_models/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /opt/app-root/src/converter USER root RUN chown -R default:root /opt/app-root/src/converter diff --git a/model_servers/llamacpp_python/base/Containerfile b/model_servers/llamacpp_python/base/Containerfile index ce1d1587..2ec77b0d 100644 --- a/model_servers/llamacpp_python/base/Containerfile +++ b/model_servers/llamacpp_python/base/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /locallm COPY src . USER root diff --git a/model_servers/llamacpp_python/src/requirements.txt b/model_servers/llamacpp_python/src/requirements.txt index 92625e60..8fa8a2e1 100644 --- a/model_servers/llamacpp_python/src/requirements.txt +++ b/model_servers/llamacpp_python/src/requirements.txt @@ -1,3 +1,3 @@ -llama-cpp-python[server]==0.2.79 +llama-cpp-python[server]==0.2.81 transformers==4.41.2 pip==24.0 diff --git a/model_servers/llamacpp_python/vulkan/amd64/Containerfile b/model_servers/llamacpp_python/vulkan/amd64/Containerfile index f9fec104..a04ad937 100644 --- a/model_servers/llamacpp_python/vulkan/amd64/Containerfile +++ b/model_servers/llamacpp_python/vulkan/amd64/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 USER 0 RUN dnf install -y python3-dnf-plugin-versionlock RUN dnf install -y mesa-vulkan-drivers-23.3.3-1.el9.x86_64 diff --git a/model_servers/llamacpp_python/vulkan/arm64/Containerfile b/model_servers/llamacpp_python/vulkan/arm64/Containerfile index 63008e0c..36a042ab 100644 --- a/model_servers/llamacpp_python/vulkan/arm64/Containerfile +++ b/model_servers/llamacpp_python/vulkan/arm64/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 USER 0 RUN dnf install -y python3-dnf-plugin-versionlock && \ dnf install -y \ diff --git a/model_servers/object_detection_python/base/Containerfile b/model_servers/object_detection_python/base/Containerfile index af7b3f87..3c3d2e49 100644 --- a/model_servers/object_detection_python/base/Containerfile +++ b/model_servers/object_detection_python/base/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 ARG PORT=8000 WORKDIR /app COPY src . diff --git a/model_servers/object_detection_python/src/requirements.txt b/model_servers/object_detection_python/src/requirements.txt index 20414450..0bfbdc76 100644 --- a/model_servers/object_detection_python/src/requirements.txt +++ b/model_servers/object_detection_python/src/requirements.txt @@ -8,7 +8,7 @@ email_validator==2.2.0 fastapi==0.111.0 fastapi-cli==0.0.4 filelock==3.15.4 -fsspec==2024.6.0 +fsspec==2024.6.1 h11==0.14.0 httpcore==1.0.5 httptools==0.6.1 @@ -22,7 +22,7 @@ mdurl==0.1.2 mpmath==1.3.0 networkx==3.3 numpy==2.0.0 -orjson==3.10.5 +orjson==3.10.6 packaging==24.1 pillow==10.3.0 pydantic==2.7.4 diff --git a/recipes/audio/audio_to_text/app/Containerfile b/recipes/audio/audio_to_text/app/Containerfile index c48dcc2c..aeaac42d 100644 --- a/recipes/audio/audio_to_text/app/Containerfile +++ b/recipes/audio/audio_to_text/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /locallm COPY requirements.txt /locallm/requirements.txt RUN pip install --upgrade pip && \ diff --git a/recipes/computer_vision/object_detection/app/Containerfile b/recipes/computer_vision/object_detection/app/Containerfile index 6638c49a..5df9058d 100644 --- a/recipes/computer_vision/object_detection/app/Containerfile +++ b/recipes/computer_vision/object_detection/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /locallm COPY requirements.txt /locallm/requirements.txt RUN pip install --upgrade pip && \ diff --git a/recipes/multimodal/image_understanding/app/Containerfile b/recipes/multimodal/image_understanding/app/Containerfile index 0c071dd8..f88d0765 100644 --- a/recipes/multimodal/image_understanding/app/Containerfile +++ b/recipes/multimodal/image_understanding/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /image_understanding COPY requirements.txt . RUN pip install --upgrade pip && \ diff --git a/recipes/natural_language_processing/chatbot/app/Containerfile b/recipes/natural_language_processing/chatbot/app/Containerfile index 863fcd98..b88bfff8 100644 --- a/recipes/natural_language_processing/chatbot/app/Containerfile +++ b/recipes/natural_language_processing/chatbot/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /chat COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/codegen/app/Containerfile b/recipes/natural_language_processing/codegen/app/Containerfile index 70cd2e3e..8374a844 100644 --- a/recipes/natural_language_processing/codegen/app/Containerfile +++ b/recipes/natural_language_processing/codegen/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /codegen COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/rag/app/Containerfile b/recipes/natural_language_processing/rag/app/Containerfile index a7badbe3..897d1684 100644 --- a/recipes/natural_language_processing/rag/app/Containerfile +++ b/recipes/natural_language_processing/rag/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 ### Update sqlite for chroma USER root RUN dnf remove sqlite3 -y diff --git a/recipes/natural_language_processing/summarizer/app/Containerfile b/recipes/natural_language_processing/summarizer/app/Containerfile index 4e344240..cedd100e 100644 --- a/recipes/natural_language_processing/summarizer/app/Containerfile +++ b/recipes/natural_language_processing/summarizer/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-66 +FROM registry.access.redhat.com/ubi9/python-311:1-66.1719562241 WORKDIR /summarizer COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/summarizer/app/requirements.txt b/recipes/natural_language_processing/summarizer/app/requirements.txt index 964c12eb..7d37cf5a 100644 --- a/recipes/natural_language_processing/summarizer/app/requirements.txt +++ b/recipes/natural_language_processing/summarizer/app/requirements.txt @@ -1,5 +1,5 @@ langchain==0.1.20 langchain-openai==0.1.7 streamlit==1.34.0 -PyMuPDF==1.24.5 +PyMuPDF==1.24.7 rouge_score==0.1.2