Skip to content

Commit 826c250

Browse files
chore: sync downstream changes to midstream main
Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
1 parent 5061e56 commit 826c250

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

redhat-distribution/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ RUN mkdir -p ${HOME}/.llama/providers.d ${HOME}/.cache
4545
COPY redhat-distribution/run.yaml ${APP_ROOT}/run.yaml
4646
COPY redhat-distribution/providers.d/ ${HOME}/.llama/providers.d/
4747

48-
ENTRYPOINT ["python", "-m", "llama_stack.distribution.server.server", "--config", "/opt/app-root/run.yaml"]
48+
ENTRYPOINT ["python", "-m", "llama_stack.distribution.server.server", "/opt/app-root/run.yaml"]

redhat-distribution/build.py

Lines changed: 2 additions & 2 deletions
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.14",
16+
"llama-stack==0.2.18",
1717
]
1818

1919

@@ -59,7 +59,7 @@ def check_llama_stack_version():
5959

6060
def get_dependencies():
6161
"""Execute the llama stack build command and capture dependencies."""
62-
cmd = "llama stack build --config redhat-distribution/build.yaml --print-deps-only"
62+
cmd = "llama stack build redhat-distribution/build.yaml --print-deps-only"
6363
try:
6464
result = subprocess.run(cmd, shell=True, capture_output=True, text=True, check=True)
6565
# Categorize and sort different types of pip install commands

redhat-distribution/run.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,3 @@ tool_groups:
135135
provider_id: rag-runtime
136136
server:
137137
port: 8321
138-
external_providers_dir: /opt/app-root/src/.llama/providers.d

0 commit comments

Comments
 (0)