From 98cdc3dc8b3797c81f3a7db5c2758b897c84540f Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Wed, 10 Jul 2024 10:43:53 +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..33c0408c 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.1720018730 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..ba704fcc 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.1720018730 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..0aa98ca5 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.82 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..6a7c027e 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.1720018730 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..dedafef2 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.1720018730 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..65bfda98 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.1720018730 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..8719e66d 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.1720018730 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..b98d5025 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.1720018730 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..a57756ca 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.1720018730 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..585f4e4d 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.1720018730 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..6a3258d8 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.1720018730 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..d61bdabd 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.1720018730 ### 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..18941e18 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.1720018730 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