mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
update to fix test case ci
This commit is contained in:
parent
5e81bf8bc6
commit
aba32d9929
2 changed files with 3 additions and 3 deletions
|
|
@ -3380,7 +3380,7 @@ jobs:
|
|||
pip install "langchain_mcp_adapters==0.0.5"
|
||||
pip install "langchain_openai==0.2.1"
|
||||
pip install "langgraph==0.3.18"
|
||||
pip install "fastuuid==0.13.5"
|
||||
pip install "fastuuid==0.14.0"
|
||||
pip install -r requirements.txt
|
||||
- run:
|
||||
name: Install dockerize
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ backoff==2.2.1 # server dep
|
|||
pyyaml==6.0.2 # server dep
|
||||
uvicorn==0.31.1 # server dep
|
||||
gunicorn==23.0.0 # server dep
|
||||
fastuuid==0.13.5 # for uuid4
|
||||
uvloop==0.21.0 # uvicorn dep, gives us much better performance under load
|
||||
fastuuid==0.14.0 # for uuid4 (0.14.0 has Python 3.14 wheels)
|
||||
uvloop==0.21.0 ; python_version < "3.14" # uvicorn dep - no Python 3.14 wheels, falls back to asyncio
|
||||
boto3==1.40.53 # aws bedrock/sagemaker calls (has bedrock-agentcore-control, compatible with aioboto3)
|
||||
redis==5.2.1 # redis caching
|
||||
redisvl @ git+https://github.com/redis/redis-vl-python@e571e7506cce27048444de9b489baee5d257b3d3 # redis semantic caching - Python 3.14 support via PR #468 (temporary until official release)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue