-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52f5d3b
commit c488aff
Showing
2 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
# Dependencies for TFS | ||
transformers==4.37.2 | ||
|
||
# Core dependencies | ||
transformers==4.40.2 | ||
torch==2.2.0 | ||
accelerate==0.23.0 | ||
fastapi==0.109.1 | ||
pydantic==1.10.9 | ||
uvicorn[standard]==0.23.2 | ||
accelerate==0.30.1 | ||
fastapi>=0.111.0,<0.112.0 # Allow patch updates | ||
pydantic>=2.7.1,<2.8 # Allow patch updates | ||
uvicorn[standard]>=0.29.0,<0.30.0 # Allow patch updates | ||
|
||
# Utility libraries | ||
bitsandbytes==0.42.0 | ||
deepspeed==0.11.1 | ||
gputil==1.4.0 | ||
psutil==5.9.8 | ||
|
||
# Less critical, can be latest | ||
gputil | ||
psutil | ||
# For UTs | ||
pytest==8.0.0 | ||
httpx==0.26.0 | ||
pytest | ||
httpx |