diff --git a/convert_models/Containerfile b/convert_models/Containerfile index 9600bee9..069c6465 100644 --- a/convert_models/Containerfile +++ b/convert_models/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 5f864bba..b5dd132f 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 WORKDIR /locallm COPY src . USER root diff --git a/model_servers/llamacpp_python/vulkan/amd64/Containerfile b/model_servers/llamacpp_python/vulkan/amd64/Containerfile index 2c0ddc76..eb30ae11 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 b47c1dcf..eb371ff5 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 42ded63e..314d45a8 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 ab055aae..17fdbc95 100644 --- a/model_servers/object_detection_python/src/requirements.txt +++ b/model_servers/object_detection_python/src/requirements.txt @@ -10,7 +10,7 @@ fastapi-cli==0.0.5 filelock==3.15.4 fsspec==2024.6.1 h11==0.14.0 -httpcore==1.0.5 +httpcore==1.0.6 httptools==0.6.1 httpx==0.27.2 huggingface-hub==0.23.4 @@ -29,7 +29,7 @@ pydantic==2.7.4 pydantic_core==2.18.4 Pygments==2.18.0 python-dotenv==1.0.1 -python-multipart==0.0.10 +python-multipart==0.0.12 PyYAML==6.0.2 regex==2024.5.15 requests==2.32.3 diff --git a/recipes/audio/audio_to_text/app/Containerfile b/recipes/audio/audio_to_text/app/Containerfile index 436a3f36..701aead2 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 f4b3e4e7..7b42097b 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 07726ea6..de579da9 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 64a0de45..c87ed477 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 e9474542..f57c27f7 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 WORKDIR /codegen COPY requirements.txt . RUN pip install --upgrade pip diff --git a/recipes/natural_language_processing/function_calling/app/Containerfile b/recipes/natural_language_processing/function_calling/app/Containerfile index 62d6e5ee..f13fb3e5 100644 --- a/recipes/natural_language_processing/function_calling/app/Containerfile +++ b/recipes/natural_language_processing/function_calling/app/Containerfile @@ -1,4 +1,4 @@ -FROM registry.access.redhat.com/ubi9/python-311:1-72.1722518949 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 WORKDIR /function-call 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 5e9d0795..593ca9fa 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 ### Update sqlite for chroma USER root RUN dnf remove sqlite3 -y diff --git a/recipes/natural_language_processing/rag/app/requirements.txt b/recipes/natural_language_processing/rag/app/requirements.txt index 58783092..e1a2865a 100644 --- a/recipes/natural_language_processing/rag/app/requirements.txt +++ b/recipes/natural_language_processing/rag/app/requirements.txt @@ -1,6 +1,6 @@ langchain-openai==0.1.7 langchain==0.1.20 -chromadb==0.5.7 +chromadb==0.5.13 sentence-transformers==2.7.0 streamlit==1.34.0 pypdf==4.2.0 diff --git a/recipes/natural_language_processing/summarizer/app/Containerfile b/recipes/natural_language_processing/summarizer/app/Containerfile index 7d823867..9ce10d25 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-77.1725907703 +FROM registry.access.redhat.com/ubi9/python-311:1-77.1726664316 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 e24b5c70..45511c0a 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.10 +PyMuPDF==1.24.11 rouge_score==0.1.2