Skip to content

Commit aafef8c

Browse files
committed
chore: rollback litellm version
1 parent ac1c60d commit aafef8c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"a2a-sdk==0.3.7", # For Google Agent2Agent protocol
1717
"deprecated==1.2.18",
1818
"google-adk==1.19.0", # For basic agent architecture
19-
"litellm>=1.74.3", # For model inference
19+
"litellm==1.74.3", # For model inference
2020
"loguru==0.7.3", # For better logging
2121
"opentelemetry-exporter-otlp==1.37.0",
2222
"opentelemetry-instrumentation-logging>=0.56b0",
@@ -73,10 +73,6 @@ dev = [
7373
"pytest-xdist>=3.8.0",
7474
]
7575

76-
responses = [
77-
"litellm>=1.79.3"
78-
]
79-
8076
[dependency-groups]
8177
dev = [
8278
"pre-commit>=4.2.0", # Format checking

veadk/utils/misc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ def check_litellm_version(min_version: str):
207207
required = parse_version(min_version)
208208
if installed < required:
209209
raise ValueError(
210-
"You have used `enable_responses=True`. If you want to use the `responses_api`, please install the relevant support:"
211-
"\npip install veadk-python[responses]"
210+
"You have used `enable_responses=True`. If you want to use the `responses_api`, please ensure that `litellm>=1.79.3`"
212211
)
213212
except ImportError:
214213
raise ImportError(

0 commit comments

Comments
 (0)