Skip to content

Commit cd9ef80

Browse files
committed
fix(deps): bump litellm to >=1.83.7 (CVE-2026-35029, CVE-2026-35030, CVE-2026-40217, CVE-2026-42271)
GHSA-53mr-6c8q-9789 GHSA-jjhc-v7c2-5hh6 GHSA-wxxx-gvqv-xp7p GHSA-v4p8-mg3p-g94g Only applies to release-0.4.x; litellm removed on main and release-0.7.x. Signed-off-by: Matthew F Leader <mleader@redhat.com>
1 parent 19c07be commit cd9ef80

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/llama_stack/providers/registry/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def available_providers() -> list[ProviderSpec]:
279279
api=Api.inference,
280280
adapter_type="watsonx",
281281
provider_type="remote::watsonx",
282-
pip_packages=["litellm"],
282+
pip_packages=["litellm>=1.83.7"],
283283
module="llama_stack.providers.remote.inference.watsonx",
284284
config_class="llama_stack.providers.remote.inference.watsonx.WatsonXConfig",
285285
provider_data_validator="llama_stack.providers.remote.inference.watsonx.config.WatsonXProviderDataValidator",

src/llama_stack/providers/registry/safety.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def available_providers() -> list[ProviderSpec]:
6969
api=Api.safety,
7070
adapter_type="sambanova",
7171
provider_type="remote::sambanova",
72-
pip_packages=["litellm", "requests"],
72+
pip_packages=["litellm>=1.83.7", "requests"],
7373
module="llama_stack.providers.remote.safety.sambanova",
7474
config_class="llama_stack.providers.remote.safety.sambanova.SambaNovaSafetyConfig",
7575
provider_data_validator="llama_stack.providers.remote.safety.sambanova.config.SambaNovaProviderDataValidator",

0 commit comments

Comments
 (0)