Skip to content

Commit 0d67f74

Browse files
committed
feat: bump llama-stack to 0.2.22
https://github.com/llamastack/llama-stack/releases/tag/v0.2.22 Relates to: RHAIENG-1124 Signed-off-by: Sébastien Han <seb@redhat.com>
1 parent b535695 commit 0d67f74

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ repos:
5656
always_run: true
5757
files: ^distribution/.*$
5858
additional_dependencies:
59-
- llama-stack==0.2.21
59+
- llama-stack==0.2.22
6060

6161
- id: doc-gen
6262
name: Distribution Documentation

distribution/Containerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ RUN pip install \
2020
mcp>=1.8.1 \
2121
nltk \
2222
numpy \
23-
openai \
2423
opentelemetry-exporter-otlp-proto-http \
2524
opentelemetry-sdk \
2625
pandas \
@@ -44,7 +43,7 @@ RUN pip install \
4443
llama_stack_provider_trustyai_fms==0.2.2
4544
RUN pip install --extra-index-url https://download.pytorch.org/whl/cpu torch torchao>=0.12.0 torchvision
4645
RUN pip install --no-deps sentence-transformers
47-
RUN pip install --no-cache llama-stack==0.2.21
46+
RUN pip install --no-cache llama-stack==0.2.22
4847
RUN mkdir -p ${HOME}/.llama ${HOME}/.cache
4948
COPY distribution/run.yaml ${APP_ROOT}/run.yaml
5049

distribution/Containerfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ WORKDIR /opt/app-root
33

44
RUN pip install sqlalchemy # somehow sqlalchemy[asyncio] is not sufficient
55
{dependencies}
6-
RUN pip install --no-cache llama-stack==0.2.21
6+
RUN pip install --no-cache llama-stack==0.2.22
77
RUN mkdir -p ${{HOME}}/.llama ${{HOME}}/.cache
88
COPY distribution/run.yaml ${{APP_ROOT}}/run.yaml
99

distribution/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from pathlib import Path
1414

1515
BASE_REQUIREMENTS = [
16-
"llama-stack==0.2.21",
16+
"llama-stack==0.2.22",
1717
]
1818

1919

0 commit comments

Comments
 (0)