Skip to content

Commit fdd00e1

Browse files
authored
LCORE-633: bump-up Llama Stack version to 0.2.19 (#520)
* LCORE-633: bump-up Llama Stack version to 0.2.19 * Update range of supported Llama Stack versions * Updated run.yaml file * Fixed e2e test settings
1 parent 7f52cd8 commit fdd00e1

File tree

5 files changed

+78
-86
lines changed

5 files changed

+78
-86
lines changed

.github/workflows/e2e_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
distributed_backend: null
172172
dpo_output_dir: '.'
173173
provider_id: huggingface
174-
provider_type: inline::huggingface
174+
provider_type: inline::huggingface-gpu
175175
safety:
176176
- config:
177177
excluded_categories: []

pyproject.toml

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

run.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ providers:
7171
distributed_backend: null
7272
dpo_output_dir: "."
7373
provider_id: huggingface
74-
provider_type: inline::huggingface
74+
provider_type: inline::huggingface-gpu
7575
safety:
7676
- config:
7777
excluded_categories: []

src/constants.py

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

33
# Minimal and maximal supported Llama Stack version
44
MINIMAL_SUPPORTED_LLAMA_STACK_VERSION = "0.2.17"
5-
MAXIMAL_SUPPORTED_LLAMA_STACK_VERSION = "0.2.18"
5+
MAXIMAL_SUPPORTED_LLAMA_STACK_VERSION = "0.2.19"
66

77
UNABLE_TO_PROCESS_RESPONSE = "Unable to process this request"
88

0 commit comments

Comments
 (0)