File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff 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 ]
8177dev = [
8278 " pre-commit>=4.2.0" , # Format checking
Original file line number Diff line number Diff 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- "\n pip 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 (
You can’t perform that action at this time.
0 commit comments