Skip to content

Commit ff3b53a

Browse files
authored
Fixes everything to llama-stack 0.2.16 (#75)
Fixes everything to llama-stack 0.2.16 issue: https://issues.redhat.com/browse/AAP-50401 Signed-off-by: Djebran Lezzoum <[email protected]>
1 parent 0504dc1 commit ff3b53a

File tree

5 files changed

+125
-21
lines changed

5 files changed

+125
-21
lines changed

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG ANSIBLE_CHATBOT_VERSION=latest
44
# ======================================================
55
# Transient image to construct Python venv
66
# ------------------------------------------------------
7-
FROM quay.io/lightspeed-core/lightspeed-stack:dev-latest AS builder
7+
FROM quay.io/lightspeed-core/lightspeed-stack:0.1.2 AS builder
88

99
ARG APP_ROOT=/app-root
1010
WORKDIR /app-root

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ANSIBLE_CHATBOT_INFERENCE_MODEL_FILTER ?=
1010
LLAMA_STACK_PORT ?= 8321
1111
LOCAL_DB_PATH ?= .
1212
CONTAINER_DB_PATH ?= /.llama/data/distributions/ansible-chatbot
13-
RAG_CONTENT_IMAGE ?= quay.io/ansible/aap-rag-content:latest
13+
RAG_CONTENT_IMAGE ?= quay.io/ansible/aap-rag-content:1.0.1753876830
1414
LIGHTSPEED_STACK_CONFIG ?= lightspeed-stack.yaml
1515
LLAMA_STACK_RUN_CONFIG ?= ansible-chatbot-run.yaml
1616
# Colors for terminal output

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies = [
88
"aiosqlite~=0.21.0",
99
"faiss-cpu~=1.11.0",
1010
"fire~=0.7.0",
11-
"lightspeed-stack-providers~=0.1.10",
11+
"lightspeed-stack-providers==0.1.12",
1212
"mcp~=1.9.4",
1313
"numpy==2.2.6",
1414
"opentelemetry-api~=1.34.1",

requirements.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ anyio==4.9.0
77
asyncpg==0.30.0
88
attrs==25.3.0
99
certifi==2025.6.15
10+
cffi==1.17.1 ; platform_python_implementation != 'PyPy'
1011
charset-normalizer==3.4.2
1112
click==8.2.1
1213
colorama==0.4.6 ; sys_platform == 'win32'
14+
cryptography==45.0.5
1315
distro==1.9.0
1416
ecdsa==0.19.1
1517
faiss-cpu==1.11.0
@@ -26,17 +28,18 @@ hf-xet==1.1.5 ; platform_machine == 'aarch64' or platform_machine == 'amd64' or
2628
httpcore==1.0.9
2729
httpx==0.28.1
2830
httpx-sse==0.4.1
29-
huggingface-hub==0.33.0
31+
huggingface-hub==0.34.3
3032
idna==3.10
3133
importlib-metadata==8.7.0
3234
jinja2==3.1.6
3335
jiter==0.10.0
3436
joblib==1.5.1
3537
jsonschema==4.24.0
3638
jsonschema-specifications==2025.4.1
37-
lightspeed-stack-providers==0.1.10
38-
llama-stack==0.2.14
39-
llama-stack-client==0.2.15
39+
lightspeed-stack-providers==0.1.12
40+
llama-api-client==0.1.2
41+
llama-stack==0.2.16
42+
llama-stack-client==0.2.16
4043
markdown-it-py==3.0.0
4144
markupsafe==3.0.2
4245
mcp==1.9.4
@@ -76,6 +79,7 @@ propcache==0.3.2
7679
protobuf==5.29.5
7780
pyaml==25.5.0
7881
pyasn1==0.6.1
82+
pycparser==2.22 ; platform_python_implementation != 'PyPy'
7983
pydantic==2.11.7
8084
pydantic-core==2.33.2
8185
pydantic-settings==2.10.1

0 commit comments

Comments
 (0)