Skip to content

Commit 658ab1e

Browse files
committed
git status(spike) using rhoai lls
ls -la /Users/lance/Documents/RedHat/lightspeed-stack/.git/.COMMIT_EDITMSG*
1 parent b5eb048 commit 658ab1e

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ version = "0.1.0"
245245
description = "Llama Stack runner"
246246
authors = []
247247
dependencies = [
248-
"llama-stack==0.2.20",
248+
"llama-stack==0.2.23",
249249
"fastapi>=0.115.12",
250250
"opentelemetry-sdk>=1.34.0",
251251
"opentelemetry-exporter-otlp>=1.34.0",

docker-compose.yaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
services:
2+
# Red Hat llama-stack distribution
23
llama-stack:
3-
build:
4-
context: .
5-
dockerfile: test.containerfile
4+
image: quay.io/opendatahub/llama-stack:rhoai-v2.25-latest
5+
platform: linux/amd64
66
container_name: llama-stack
77
ports:
8-
- "8321:8321" # Expose llama-stack on 8321 (adjust if needed)
8+
- "8321:8321"
99
volumes:
10-
- ./run.yaml:/app-root/run.yaml:Z
10+
- ./run.yaml:/opt/app-root/run.yaml:Z
1111
environment:
1212
- OPENAI_API_KEY=${OPENAI_API_KEY}
13+
- BRAVE_SEARCH_API_KEY=${BRAVE_SEARCH_API_KEY:-}
14+
- TAVILY_SEARCH_API_KEY=${TAVILY_SEARCH_API_KEY:-}
1315
networks:
1416
- lightspeednet
1517
healthcheck:
1618
test: ["CMD", "curl", "-f", "http://localhost:8321/v1/health"]
17-
interval: 10s # how often to run the check
18-
timeout: 5s # how long to wait before considering it failed
19-
retries: 3 # how many times to retry before marking as unhealthy
20-
start_period: 15s # time to wait before starting checks
19+
interval: 10s
20+
timeout: 5s
21+
retries: 3
22+
start_period: 30s
2123

2224
lightspeed-stack:
2325
build:
@@ -44,4 +46,4 @@ services:
4446

4547
networks:
4648
lightspeednet:
47-
driver: bridge
49+
driver: bridge

docs/deployment_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ a4982f43195537b9eb1cec510fe6655f245d6d4b7236a4759808115d5d719972
676676
description = "Default template for PDM package"
677677
authors = []
678678
dependencies = [
679-
"llama-stack==0.2.18",
679+
"llama-stack==0.2.23",
680680
"fastapi>=0.115.12",
681681
"opentelemetry-sdk>=1.34.0",
682682
"opentelemetry-exporter-otlp>=1.34.0",

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ It is possible to run Lightspeed Core Stack service with Llama Stack "embedded"
2424
1. Add and install all required dependencies
2525
```bash
2626
uv add \
27-
"llama-stack==0.2.20" \
27+
"llama-stack==0.2.23" \
2828
"fastapi>=0.115.12" \
2929
"opentelemetry-sdk>=1.34.0" \
3030
"opentelemetry-exporter-otlp>=1.34.0" \

examples/pyproject.llamastack.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Default template for PDM package"
55
authors = []
66
dependencies = [
7-
"llama-stack==0.2.20",
7+
"llama-stack==0.2.23",
88
"fastapi>=0.115.12",
99
"opentelemetry-sdk>=1.34.0",
1010
"opentelemetry-exporter-otlp>=1.34.0",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies = [
2828
# Used by authentication/k8s integration
2929
"kubernetes>=30.1.0",
3030
# Used to call Llama Stack APIs
31-
"llama-stack==0.2.20",
32-
"llama-stack-client==0.2.20",
31+
"llama-stack==0.2.23",
32+
"llama-stack-client==0.2.23",
3333
# Used by Logger
3434
"rich>=14.0.0",
3535
# Used by JWK token auth handler

0 commit comments

Comments
 (0)