Skip to content

Commit 7d77c74

Browse files
authored
Merge pull request #355 from tisnik/lcore-336-bump-up-llama-stack-to-0.2.17
LCORE-336: bump-up Llama Stack to 0.2.17
2 parents ca0fa35 + a90e0c5 commit 7d77c74

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ dependencies = [
2525
"fastapi>=0.115.6",
2626
"uvicorn>=0.34.3",
2727
"kubernetes>=30.1.0",
28-
"llama-stack==0.2.16",
29-
"llama-stack-client==0.2.16",
28+
"llama-stack==0.2.17",
29+
"llama-stack-client==0.2.17",
3030
"rich>=14.0.0",
3131
"cachetools>=6.1.0",
3232
"prometheus-client>=0.22.1",

src/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Optional
66

7-
from llama_stack.distribution.library_client import (
7+
from llama_stack import (
88
AsyncLlamaStackAsLibraryClient, # type: ignore
99
LlamaStackAsLibraryClient, # type: ignore
1010
)

src/utils/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from logging import Logger
77

88
from llama_stack_client import LlamaStackClient, AsyncLlamaStackClient
9-
from llama_stack.distribution.library_client import (
9+
from llama_stack import (
1010
AsyncLlamaStackAsLibraryClient,
1111
)
1212

test.containerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ ENV PATH="$PATH:/root/.local/bin"
88
WORKDIR ${APP_ROOT}
99
COPY run.yaml ./
1010

11-
1211
RUN microdnf install -y --nodocs --setopt=keepcache=0 --setopt=tsflags=nodocs \
1312
python3.12 python3.12-devel python3.12-pip git tar
1413

@@ -17,7 +16,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
1716
RUN uv -h
1817

1918
RUN uv venv && \
20-
uv pip install llama-stack==0.2.16 \
19+
uv pip install llama-stack==0.2.17 \
2120
fastapi \
2221
opentelemetry-sdk \
2322
opentelemetry-exporter-otlp \
@@ -36,4 +35,4 @@ RUN uv venv && \
3635
peft \
3736
trl
3837

39-
CMD ["uv", "run", "llama", "stack", "run", "run.yaml"]
38+
CMD ["uv", "run", "llama", "stack", "run", "run.yaml"]

uv.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)