From 41680dd79abc8c67bed59ff80ee2d76817219c92 Mon Sep 17 00:00:00 2001 From: Platform Engineering Bot Date: Thu, 18 Jul 2024 09:33:43 +0000 Subject: [PATCH] Update Auto merged updates Signed-off-by: Platform Engineering Bot --- .github/workflows/chatbot.yaml | 2 +- .github/workflows/codegen.yaml | 2 +- .github/workflows/model_servers.yaml | 2 +- .github/workflows/object_detection.yaml | 2 +- .github/workflows/rag.yaml | 2 +- .github/workflows/summarizer.yaml | 2 +- .github/workflows/test-trace-steps.yaml | 2 +- .github/workflows/testing_framework.yaml | 4 ++-- 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 +- .../object_detection_python/src/requirements.txt | 8 ++++---- recipes/audio/audio_to_text/app/Containerfile | 2 +- .../computer_vision/object_detection/app/Containerfile | 2 +- recipes/multimodal/image_understanding/app/Containerfile | 2 +- .../natural_language_processing/chatbot/app/Containerfile | 2 +- .../natural_language_processing/codegen/app/Containerfile | 2 +- recipes/natural_language_processing/rag/app/Containerfile | 2 +- .../natural_language_processing/rag/app/requirements.txt | 2 +- .../summarizer/app/Containerfile | 2 +- .../summarizer/app/requirements.txt | 2 +- 24 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/chatbot.yaml b/.github/workflows/chatbot.yaml index 4fec87e0..b188c06e 100644 --- a/.github/workflows/chatbot.yaml +++ b/.github/workflows/chatbot.yaml @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v4.1.7 - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/codegen.yaml b/.github/workflows/codegen.yaml index 63c9d7ed..80377b42 100644 --- a/.github/workflows/codegen.yaml +++ b/.github/workflows/codegen.yaml @@ -53,7 +53,7 @@ jobs: context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/model_servers.yaml b/.github/workflows/model_servers.yaml index 517d6f96..586f063e 100644 --- a/.github/workflows/model_servers.yaml +++ b/.github/workflows/model_servers.yaml @@ -87,7 +87,7 @@ jobs: sudo apt-get install -y qemu-user-static - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/object_detection.yaml b/.github/workflows/object_detection.yaml index a16b83ff..7c060473 100644 --- a/.github/workflows/object_detection.yaml +++ b/.github/workflows/object_detection.yaml @@ -54,7 +54,7 @@ jobs: context: recipes/${{ env.RECIPE_TYPE }}/${{ env.RECIPE_NAME }}/app - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/rag.yaml b/.github/workflows/rag.yaml index c2fb19a0..af827fdc 100644 --- a/.github/workflows/rag.yaml +++ b/.github/workflows/rag.yaml @@ -58,7 +58,7 @@ jobs: context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/summarizer.yaml b/.github/workflows/summarizer.yaml index 940442d6..5f5b48f9 100644 --- a/.github/workflows/summarizer.yaml +++ b/.github/workflows/summarizer.yaml @@ -53,7 +53,7 @@ jobs: context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/test-trace-steps.yaml b/.github/workflows/test-trace-steps.yaml index 673fe1d0..5fb1cca6 100644 --- a/.github/workflows/test-trace-steps.yaml +++ b/.github/workflows/test-trace-steps.yaml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v4.1.7 - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' diff --git a/.github/workflows/testing_framework.yaml b/.github/workflows/testing_framework.yaml index 61007d1c..7e078e15 100644 --- a/.github/workflows/testing_framework.yaml +++ b/.github/workflows/testing_framework.yaml @@ -49,7 +49,7 @@ jobs: ref: 'main' - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' @@ -174,7 +174,7 @@ jobs: - uses: actions/checkout@v4.1.7 - name: Set up Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v5.1.1 with: python-version: '3.11' 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..372c5b1a 100644 --- a/model_servers/object_detection_python/src/requirements.txt +++ b/model_servers/object_detection_python/src/requirements.txt @@ -5,15 +5,15 @@ charset-normalizer==3.3.2 click==8.1.7 dnspython==2.6.1 email_validator==2.2.0 -fastapi==0.111.0 +fastapi==0.111.1 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 httpx==0.27.0 -huggingface-hub==0.23.4 +huggingface-hub==0.23.5 idna==3.7 Jinja2==3.1.4 markdown-it-py==3.0.0 @@ -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/rag/app/requirements.txt b/recipes/natural_language_processing/rag/app/requirements.txt index 1df8c00d..32692bd5 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.3 +chromadb==0.5.4 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 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