Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Auto merged updates #651

Merged
merged 1 commit into from
Jul 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/chatbot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codegen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/model_servers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
sudo apt-get install -y qemu-user-static

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/object_detection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
context: recipes/${{ env.RECIPE_TYPE }}/${{ env.RECIPE_NAME }}/app

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/summarizer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
context: recipes/natural_language_processing/${{ env.IMAGE_NAME }}/app

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-trace-steps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing_framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
ref: 'main'

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
- uses: actions/[email protected]

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: '3.11'

Expand Down
2 changes: 1 addition & 1 deletion convert_models/Containerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion model_servers/llamacpp_python/base/Containerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion model_servers/llamacpp_python/src/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion model_servers/llamacpp_python/vulkan/amd64/Containerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion model_servers/llamacpp_python/vulkan/arm64/Containerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion model_servers/object_detection_python/base/Containerfile
Original file line number Diff line number Diff line change
@@ -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 .
Expand Down
8 changes: 4 additions & 4 deletions model_servers/object_detection_python/src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ 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
Expand All @@ -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
Expand All @@ -49,7 +49,7 @@ typer==0.12.3
typing_extensions==4.12.2
ujson==5.10.0
urllib3==2.2.2
uvicorn==0.30.1
uvicorn==0.30.3
uvloop==0.19.0
watchfiles==0.22.0
websockets==12.0
2 changes: 1 addition & 1 deletion recipes/audio/audio_to_text/app/Containerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion recipes/multimodal/image_understanding/app/Containerfile
Original file line number Diff line number Diff line change
@@ -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 && \
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Loading