shinnosukeono Claude Opus 4.5 commited on
Commit
0ab0126
·
1 Parent(s): 099f1c5

Reorder requirements to prioritize pydantic version

Browse files

Put pydantic and vllm first to ensure pydantic>=2.12.0
is installed before gradio pulls in older version

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Files changed (1) hide show
  1. requirements.txt +3 -2
requirements.txt CHANGED
@@ -1,6 +1,7 @@
 
 
 
1
  transformers>=4.40.0
2
  accelerate>=0.30.0
3
  gradio>=5.45.0
4
- vllm>=0.4.0
5
  torch>=2.2.0
6
- pydantic>=2.12.0
 
1
+ # pydantic first to satisfy vllm>=0.15.0 requirement
2
+ pydantic>=2.12.0
3
+ vllm>=0.4.0
4
  transformers>=4.40.0
5
  accelerate>=0.30.0
6
  gradio>=5.45.0
 
7
  torch>=2.2.0